kist
Version:
Lightweight Package Pipeline Processor with Plugin Architecture
22 lines • 419 B
TypeScript
interface SvgMetadata {
name: string;
creator?: string;
description?: string;
license?: string;
}
export interface Svg {
metadata: SvgMetadata;
source: string;
width?: number;
height?: number;
viewBox?: string;
paths?: SvgPath[];
}
interface SvgPath {
d: string;
fill?: string;
stroke?: string;
strokeWidth?: number;
}
export {};
//# sourceMappingURL=SVG.d.ts.map