UNPKG

599 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.PLACEMENT = exports.DURATION = void 0;
7
8/*
9Copyright (c) 2018-2020 Uber Technologies, Inc.
10
11This source code is licensed under the MIT license found in the
12LICENSE file in the root directory of this source tree.
13*/
14var DURATION = {
15 infinite: 0,
16 short: 3000,
17 medium: 5000,
18 long: 7000
19};
20exports.DURATION = DURATION;
21var PLACEMENT = {
22 topLeft: 'topLeft',
23 top: 'top',
24 topRight: 'topRight',
25 bottomRight: 'bottomRight',
26 bottom: 'bottom',
27 bottomLeft: 'bottomLeft'
28};
29exports.PLACEMENT = PLACEMENT;
\No newline at end of file