UNPKG

@gamesberry/karmyc-core

Version:

A flexible and powerful layout management system for React applications

20 lines (19 loc) 430 B
import { AreaComponentProps } from '../../../src/types/areaTypes'; import * as React from 'react'; interface DrawingState { } export interface DrawSharedState { lines: Line[]; strokeWidth: number; } export interface Line { id: string; points: { x: number; y: number; }[]; color: string; width: number; } export declare const Draw: React.FC<AreaComponentProps<DrawingState>>; export {};