cl-react-graph
Version:
React D3 Charts
9 lines (8 loc) • 307 B
TypeScript
type OutputType = "png" | "blob";
type Watermark = {
svg: string;
width: number;
height: number;
};
export declare const outputSvg: (svgId: string, width: number, height: number, callback: (outputData: string | Blob | null) => void, watermark?: Watermark, type?: OutputType) => void;
export {};