UNPKG

@visactor/vrender-core

Version:
8 lines (7 loc) 259 B
import type { IGraphicAttribute, IGraphic } from '../graphic'; export interface ISvgAttribute { path: string; } export interface ISvgGraphicAttribute extends Partial<IGraphicAttribute>, ISvgAttribute { } export type ISvg = IGraphic<ISvgGraphicAttribute>;