interface PackFolderData {
    color: string;
    folders: PackFolderData[];
    name: string;
    packs: string[];
    sorting: "a" | "m";
}

Properties

color: string

A hex string for the pack's color.

folders: PackFolderData[]

Nested folder data, up to three levels.

name: string

Name for the folder. Multiple packages with identical folder names will merge by name.

packs: string[]

A list of the pack names to include in this folder.

sorting: "a" | "m"

Alphabetical or manual sorting.