Interface ISetDesc

interface ISetDesc {
    categories?: (string | Partial<ICategory>)[];
    categoryOrder?: "given" | "small-to-large" | "large-to-small" | ((categories) => ICategory[]);
    separator?: string;
}

Hierarchy (view full)

Properties

categories?: (string | Partial<ICategory>)[]
categoryOrder?: "given" | "small-to-large" | "large-to-small" | ((categories) => ICategory[])

Type declaration

Default

given or name if not provided
separator?: string