9 lines
146 B
Plaintext
9 lines
146 B
Plaintext
import type Cropper from 'cropperjs';
|
|
|
|
export interface CropendResult {
|
|
imgBase64: string;
|
|
imgInfo: Cropper.Data;
|
|
}
|
|
|
|
export type { Cropper };
|