21 lines
462 B
JavaScript
21 lines
462 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
Object.defineProperty(exports, "durations", {
|
||
|
enumerable: true,
|
||
|
get: function() {
|
||
|
return durations;
|
||
|
}
|
||
|
});
|
||
|
const durations = {
|
||
|
durationUltraFast: '50ms',
|
||
|
durationFaster: '100ms',
|
||
|
durationFast: '150ms',
|
||
|
durationNormal: '200ms',
|
||
|
durationGentle: '250ms',
|
||
|
durationSlow: '300ms',
|
||
|
durationSlower: '400ms',
|
||
|
durationUltraSlow: '500ms'
|
||
|
};
|