svg-artisan
Version:
Simple SVG builder for Node.
5 lines • 297 B
TypeScript
import type { SvgElement } from './interfaces';
export type AttributeValue = string | number | null;
export type ElementAttributes = Record<string, AttributeValue>;
export type ElementContent = string | number | SvgElement | Array<string | number | SvgElement>;
//# sourceMappingURL=types.d.ts.map