UNPKG

react-canvas-masker

Version:

General-purpose mask editor for React image manipulation apps

10 lines 453 B
import React from 'react'; import '../maskEditor.less'; import type { UseMaskEditorProps } from '../hooks/useMaskEditor'; import type { MaskEditorCanvasRef } from '../hooks/useMaskEditor'; export type { MaskEditorCanvasRef }; export interface MaskEditorProps extends UseMaskEditorProps { canvasRef?: React.RefObject<MaskEditorCanvasRef>; } export declare const MaskEditor: React.FC<MaskEditorProps>; //# sourceMappingURL=MaskEditor.d.ts.map