You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
1.1 KiB
19 lines
1.1 KiB
/// <reference types="react" />
|
|
export declare const STATUS_NONE: "none";
|
|
export declare const STATUS_APPEAR: "appear";
|
|
export declare const STATUS_ENTER: "enter";
|
|
export declare const STATUS_LEAVE: "leave";
|
|
export declare type MotionStatus = typeof STATUS_NONE | typeof STATUS_APPEAR | typeof STATUS_ENTER | typeof STATUS_LEAVE;
|
|
export declare const STEP_NONE: "none";
|
|
export declare const STEP_PREPARE: "prepare";
|
|
export declare const STEP_START: "start";
|
|
export declare const STEP_ACTIVE: "active";
|
|
export declare const STEP_ACTIVATED: "end";
|
|
export declare type StepStatus = typeof STEP_NONE | typeof STEP_PREPARE | typeof STEP_START | typeof STEP_ACTIVE | typeof STEP_ACTIVATED;
|
|
export declare type MotionEvent = (TransitionEvent | AnimationEvent) & {
|
|
deadline?: boolean;
|
|
};
|
|
export declare type MotionPrepareEventHandler = (element: HTMLElement) => Promise<any> | void;
|
|
export declare type MotionEventHandler = (element: HTMLElement, event: MotionEvent) => React.CSSProperties | void;
|
|
export declare type MotionEndEventHandler = (element: HTMLElement, event: MotionEvent) => boolean | void;
|