nicecode-v2/packages/meta/es/ImageEditor/cropper/constants.d.ts
2024-01-10 15:15:12 +08:00

27 lines
1.2 KiB
TypeScript

export declare const NAMESPACE = "zhst-cropper";
export declare const ACTION_MOVE = "move";
export declare const ACTION_CROP = "crop";
export declare const ACTION_EAST = "e";
export declare const ACTION_WEST = "w";
export declare const ACTION_SOUTH = "s";
export declare const ACTION_NORTH = "n";
export declare const ACTION_NORTH_EAST = "ne";
export declare const ACTION_NORTH_WEST = "nw";
export declare const ACTION_SOUTH_EAST = "se";
export declare const ACTION_SOUTH_WEST = "sw";
export declare const CLASS_HIDDEN: string;
export declare const CLASS_MASK: string;
export declare const DATA_ACTION: string;
export declare const EVENT_TOUCH_START: string;
export declare const EVENT_TOUCH_MOVE: string;
export declare const EVENT_TOUCH_END: string;
export declare const EVENT_POINTER_DOWN: string;
export declare const EVENT_POINTER_MOVE: string;
export declare const EVENT_POINTER_UP: string;
export declare const EVENT_WHEEL = "wheel";
export declare const EVENT_CROP_CHANGE = "crop-change";
export declare const EVENT_CROP_START = "crop-start";
export declare const EVENT_CROP_END = "crop-end";
export declare const REGEXP_SPACES: RegExp;
export declare const REGEXP_ACTIONS: RegExp;