vue-svgicon
Version:
A tool to create svg icon components. (vue 2.x)
17 lines (16 loc) • 323 B
TypeScript
export interface Options {
sourcePath: string;
targetPath: string;
ext?: string;
export?: boolean;
es6?: boolean;
tpl?: string;
idSP?: string;
svgo?: string | {
[key: string]: any;
};
}
/**
* build svg icon
*/
export default function build(options: Options): Promise<unknown>;