Skip to main content

Documentation Index

Fetch the complete documentation index at: https://styleguide-nextjs.2smooth.io/llms.txt

Use this file to discover all available pages before exploring further.

  • ใช้ 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>';