UNPKG

612 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.STATE_CHANGE_TYPE = exports.FILL = exports.ORIENTATION = 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 ORIENTATION = {
15 vertical: 'vertical',
16 horizontal: 'horizontal'
17};
18exports.ORIENTATION = ORIENTATION;
19var FILL = {
20 fixed: 'fixed',
21 intrinsic: 'intrinsic'
22};
23exports.FILL = FILL;
24var STATE_CHANGE_TYPE = {
25 change: 'change'
26};
27exports.STATE_CHANGE_TYPE = STATE_CHANGE_TYPE;
\No newline at end of file