2021.03.19 — Typescript — 1 min read
아래와 같이 타입 선언을 해서 사용
Copycopy code to clipboard1declare global {2 interface Window {3 myCutstomProperty: string;4 }5 namespace NodeJS {6 interface Global {7 myCutstomProperty: string;8 }9 }10}
1declare global {2 interface Window {3 myCutstomProperty: string;4 }5 namespace NodeJS {6 interface Global {7 myCutstomProperty: string;8 }9 }10}