728x90
반응형
typescript namespace
-
Typescript - import & export & namespaceFront-end/Typesrcipt 2023. 4. 18. 16:55
Typescript exrpot typescript export 란 파일에 선언되어있는 변수 및 함수 등을 다른 파일로 내보내서 사용한다는 것이다. // test.ts // export 키워드를써서 다른 파일에서 사용할 수 있도록 한다. export var myName: string = 'zelord'; export var myAge: number = 27; export 키워드를 써서 다른 파일에 사용할 수 있도록 선언한다. export 키워드는 변수 뿐만 아니라 type 도 내보낼 수 있다. // test.ts export type MyName = string;// export 키워드를 사용하여 type 도 내보낼 수 있다. Typescript import Typescript import란 다른 파일에..