타입 im · export 와 namespace

크롱·2023년 7월 27일
0

TypeScript

목록 보기
15/25

🐳 타입 im · export

쉽다쉬워

a.ts에 있는 걸 index.ts로 export

(a.ts)
export type Name = string;

(index.ts)
import {Name} from './a' //.ts 생략하자.

let 변수 :Name='kurong'




🐋 과거에는 namespace

namespace는 옛날 옛적 typescript 타입변수 숨기기 문법입니다
숨기고싶은 타입변수는 object 자료안에 숨기는 문법입니다.

namespace 타입 {
	export type Name= string|number;
}

let 변수 :타입.Name = 'lim';
profile
👩‍💻안녕하세요🌞

0개의 댓글