react-img-editor-en
Version:
Image Annotation Tool for React
11 lines (10 loc) • 361 B
TypeScript
import { DrawEventParams, PluginParamValue } from "../common/type";
import Plugin from "./Plugin";
export default class ZoomOut extends Plugin {
name: string;
iconfont: string;
title: string;
defaultParamValue: PluginParamValue;
onEnter: (drawEventParams: DrawEventParams) => void;
onLeave: (drawEventParams: DrawEventParams) => void;
}