UNPKG

@flexis/favicons

Version:

A tool for generating icons for the modern web.

17 lines 705 B
import { IIconConfig, IIconsConfig, IIconToGenerateConfig, IManifestConfig } from './types'; interface IIconsToGenerate { [type: string]: { [iconName: string]: IIconToGenerateConfig; }; } /** * Get complete icon config from shirt config. * @param iconsType - Icons type name. * @param iconsConfig - Icons shirt config. * @param manifestConfig - Config to get background color. * @returns Complete config. */ export declare function getCompleteIconConfig(iconsType: string, iconsConfig: IIconsConfig, { background_color: background }: IManifestConfig): IIconConfig; export declare const iconsToGenerate: IIconsToGenerate; export {}; //# sourceMappingURL=icons.d.ts.map