본문 바로가기

typescript

export default 란?

default로 선언된 모듈은 하나의 파일에서 단 하나의 변수 또는 클래스 등등만 export 할 수 있다.

import할 때는 아무 이름으로나 import 가능함.

import Verification from ../VerificationPage' or import ThisIsNotVerification from '../VerificationPage

이렇게 사용가능하다.

단, var, let, const를 바로 export default 할 수 없다.

ex) export default const MY\_BIRTHDAY = "1990/01/01"

'typescript' 카테고리의 다른 글

sibling 요소  (0) 2021.03.13
replace 정규표현식  (0) 2021.03.13
typescript 변수 상수 선언 (ES6)  (0) 2021.03.13
생성자 constructor  (0) 2021.03.12
named export 란?  (0) 2021.03.12