Documentation
    Preparing search index...

    Interface TextileGarmentSpecInterface

    Standardized and Extensible Textile Garment Specification Interface (ends with 'Interface')

    interface TextileGarmentSpecInterface {
        brand?: string;
        colors: string[];
        fitType?: string;
        materials: string[];
        ontologyMapping?: OntologyMappingInterface;
        sizes: string[];
        washCare?: string[];
        weightGrams?: number;
        [key: string]: unknown;
    }

    Hierarchy

    • Record<string, unknown>
      • TextileGarmentSpecInterface

    Indexable

    • [key: string]: unknown
    Index

    Properties

    brand?: string
    colors: string[]
    fitType?: string
    materials: string[]
    ontologyMapping?: OntologyMappingInterface
    sizes: string[]
    washCare?: string[]
    weightGrams?: number