UNPKG

@shawngoh87/react-sketch-canvas

Version:

react-sketch-canvas - Freehand vector drawing tool for React using SVG as canvas

14 lines (13 loc) 369 B
export type ExportImageType = 'jpeg' | 'png'; export interface Point { readonly x: number; readonly y: number; } export interface CanvasPath { readonly paths: Point[]; readonly strokeWidth: number; readonly strokeColor: string; readonly drawMode: boolean; readonly startTimestamp?: number; readonly endTimestamp?: number; }