UNPKG

321 BTypeScriptView Raw
1/**
2 * @category Enums
3 */
4export declare enum OutMode {
5 bounce = "bounce",
6 bounceHorizontal = "bounce-horizontal",
7 bounceVertical = "bounce-vertical",
8 none = "none",
9 out = "out",
10 destroy = "destroy",
11 split = "split"
12}
13export declare type OutModeAlt = "bounce-horizontal" | "bounce-vertical";