svg2vectordrawable
Version:
JavaScript module and command-line tools for convert SVG to Android vector drawable.
13 lines (11 loc) • 342 B
TypeScript
declare function svg2vectordrawable(
svgCode: string,
options?: {
floatPrecision?: number, // default 2
strict?: boolean, // defaults to false
fillBlack?: boolean, // defaults to false
xmlTag?: boolean, // defaults to false
tint?: string
}
): Promise<string>;
export = svg2vectordrawable;