Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
309 Bytes
export enum TransitionPhase {
/** This transition is being mounted */
MOUNT = 'mount',
/** This transition is entering or has entered */
ENTER = 'enter',
/** This transition had its animations updated */
UPDATE = 'update',
/** This transition will expire after animating */
LEAVE = 'leave',
}