27 lines
1.2 KiB
TypeScript
27 lines
1.2 KiB
TypeScript
export declare const NAMESPACE = "zhst-viewer";
|
|
export declare const ACTION_DRAG = "drag";
|
|
export declare const CLASS_CANVAS: string;
|
|
export declare const CLASS_MOVE: string;
|
|
export declare const EVENT_CLICK = "click";
|
|
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_LEAVEL = "mouseleave";
|
|
export declare const EVENT_ENTER = "mouseenter";
|
|
export declare const EVENT_VIEWER_TRANSFORM_CHANGE = "viewer-transform-change";
|
|
export declare const EVENT_VIEWER_READY = "viewer-ready";
|
|
export declare const EVENT_VIEWER_ERROR = "viewer-error";
|
|
export declare const EVENT_SHAPE_SELECT = "shape-select";
|
|
export declare const EVENT_EYE_DONE = "eye-done";
|
|
export declare const REGEXP_SPACES: RegExp;
|
|
export declare const AXIS_TYPE_ORIGIN = 1;
|
|
export declare const AXIS_TYPE_CANVAS = 2;
|
|
export declare const AXIS_TYPE_IMAGE = 3;
|
|
export declare const SHAPE_TYPE_CUSTOM = 1;
|
|
export declare const SHAPE_TYPE_RECT = 2;
|
|
export declare const SHAPE_TYPE_CIRCLE = 3;
|