react-img-editor-en
Version:
Image Annotation Tool for React
10 lines (9 loc) • 440 B
TypeScript
import React from "react";
import { EditorContextProps } from "./EditorContext";
interface PaletteProps extends EditorContextProps {
height: number;
imageObj: HTMLImageElement;
getStage?: (stage: any) => void;
}
declare const _default: React.ForwardRefExoticComponent<Omit<React.PropsWithChildren<PaletteProps>, keyof EditorContextProps> & React.RefAttributes<React.Component<PaletteProps, any, any>>>;
export default _default;