Interface Category

interface Category {
    hidden?: boolean;
    icon?: string;
    index: number;
    name: string;
    sounds?: Sound[];
    subCategories?: Category[];
    type?: number;
}

Properties

hidden?: boolean
icon?: string
index: number
name: string
sounds?: Sound[]
subCategories?: Category[]
type?: number