TIL 59. TypeScript - declare

isk·2023년 1월 25일
0

TIL

목록 보기
56/122
post-custom-banner

.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 없이 타입을 사용할 수 있다.

0개의 댓글