import type { Icon } from "./Icon.js"; import type { IconPackEntry } from "./IconPackEntry.js"; import type { IconPackId } from "./IconPackId.js"; import type { ResourceMetadata } from "./ResourceMetadata.js"; export type IconPack = { id: IconPackId; metadata: ResourceMetadata; /** * Special icon used when some other icon is not found */ missing: Icon | null; /** * Icons defined in this icon pack */ entries: Array; /** * This lists will be downloaded and stored locally */ remoteEntries: Array; /** * Indicates if the icon pack icons was downloaded from `remote_entries` */ downloaded: boolean; }; //# sourceMappingURL=IconPack.d.ts.map