generic

Typescript

Typescript) React Native에 Typescript 적용하기 - 2

타입스크립트가 적용된 리액트 네이티브 프로젝트 만들기 프로젝트 생성 시, --template react-native-template-typescript 코드를 붙여서 생성함 Type Alias 타입에 별칭 붙임. interface 처럼 객체의 타입 지정 가능 type Person = { name: string; }; const person: Person = { name: 'John'; }; type People = Person[]; const people: People = [{name: 'John'}]; type Color = 'red' | 'orange' | 'yellow'; const color: Color = 'red'; 객체 타입은 interface 나 type 중 취향에 따라 사용하면 됨. 객체..

Kimss민
'generic' 태그의 글 목록