@cowtech/webpack-config
Version:
CowTech WebPack configuration without any CSS handling.
12 lines (11 loc) • 345 B
TypeScript
import { Icons } from '../types';
export interface Icon {
width: number;
height: number;
svgPathData: string;
}
export interface Tags {
[key: string]: string;
}
export declare function generateSVG(icon: Icon, tag: string): string;
export declare function loadFontAwesomeIcons(icons: Icons, toLoad: Array<string>): Promise<void>;