@atlaskit/motion
Version:
A set of utilities to apply motion in your application.
17 lines (16 loc) • 469 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.Reanimate = void 0;
/**
* Supported reanimate values.
* 'enter' will re-enter the animation.
* 'exit-then-enter' will exit the animation and then enter it again.
*/
var Reanimate = exports.Reanimate = /*#__PURE__*/function (Reanimate) {
Reanimate["enter"] = "enter";
Reanimate["exit_then_enter"] = "exit_then_enter";
Reanimate["exit"] = "exit";
return Reanimate;
}({});