/** * replace 事件参数类型 */ export interface ReplaceValueType { data?: string | ArrayBuffer | null; type: string; } /** * 国际化数据类型 */ export interface CropperLocale { zoomIn: string; zoomOut: string; rotateLeft: string; rotateRight: string; moveLeft: string; moveRight: string; moveUp: string; moveDown: string; flipX: string; flipY: string; reset: string; upload: string; ok: string; title: string; }