UNPKG

@gamesberry/karmyc-core

Version:

A flexible and powerful layout management system for React applications

21 lines (20 loc) 515 B
import { AreaComponentProps } from '../../../src/types/areaTypes'; import { SpaceSharedState } from '../../../src/core/spaceStore'; import React from 'react'; interface DrawingState { } export interface DrawSharedState extends SpaceSharedState { 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 {};