쉽다쉬워
a.ts에 있는 걸 index.ts로 export
(a.ts)
export type Name = string;
(index.ts)
import {Name} from './a' //.ts 생략하자.
let 변수 :Name='kurong'
namespace
는 옛날 옛적 typescript 타입변수 숨기기 문법입니다
숨기고싶은 타입변수는 object 자료안에 숨기는 문법입니다.
namespace 타입 {
export type Name= string|number;
}
let 변수 :타입.Name = 'lim';