Interface ISetDesc

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

Hierarchy (View Summary)

Properties

categories?: (string | Partial<ICategory>)[]
categoryOrder?:
    | "given"
    | "small-to-large"
    | "large-to-small"
    | (categories: readonly ICategory[]) => ICategory[]
given or name if not provided
separator?: string