Skip to main content
  • ใช้ namespace ในการจัดกลุ่มของ interface / type เพื่อหลีกเลี่ยงชื่อซ้ำ
    ทำ
    export namespace ModuleNamespace {
      export interface SampleInterface { ... }
      export type SampleType = { ... }
    }
    
    ไม่ทำ
    export interface SampleInterface { ... }
    export type SampleType = { ... }
    
  • import ด้วยวิธีนี้เสมอ
    import type { ModuleNamespace } from '<path-to-your-type>';