.d.ts파일은 type을 declare(선언, 정의)하기 위한 파일이다.
// types.d.ts declare type TodoItem = { id: string text: string }
위 코드처럼 d.ts파일에 타입을 정해주면,
const todoItem = todos.find((todo: TodoItem) => todo.id === param.id);
별도의 import 없이 타입을 사용할 수 있다.