UNPKG

@flexis/favicons

Version:

A tool for generating icons for the modern web.

19 lines 591 B
/// <reference types="node" /> import { IHeadersConfig, IConfig } from './'; interface IPluginConfig extends IConfig { /** * Background color for icons and startup images. */ background?: string; /** * Create html-file with headers for icons. */ headers?: boolean | IHeadersConfig; /** * Print additional info about progress. */ verbose?: boolean; } export default function plugin({ headers, background, verbose, ...options }?: IPluginConfig): import("stream").Transform; export {}; //# sourceMappingURL=stream.d.ts.map