node-mirai-fgo-gacha
Version:
node-mirai-sdk fgo gacha plugin
20 lines (19 loc) • 489 B
TypeScript
export = downloadIcons;
/**
* @typedef { object } iconsObject
* @property { string[] } svtIcons
* @property { string[] } cftIcons
*/
/**
* @method downloadIcons
* @description Read icons.json and download icons
* @param { function } logger
*/
declare function downloadIcons(log?: boolean, overwrite?: boolean): Promise<void>;
declare namespace downloadIcons {
export { iconsObject };
}
type iconsObject = {
svtIcons: string[];
cftIcons: string[];
};