UNPKG

855 BTypeScriptView Raw
1export declare enum ALIGNMENT {
2 AUTO = "auto",
3 START = "start",
4 CENTER = "center",
5 END = "end",
6}
7export declare enum DIRECTION {
8 HORIZONTAL = "horizontal",
9 VERTICAL = "vertical",
10}
11export declare enum SCROLL_CHANGE_REASON {
12 OBSERVED = "observed",
13 REQUESTED = "requested",
14}
15export declare const scrollProp: {
16 [DIRECTION.VERTICAL]: string;
17 [DIRECTION.HORIZONTAL]: string;
18};
19export declare const sizeProp: {
20 [DIRECTION.VERTICAL]: string;
21 [DIRECTION.HORIZONTAL]: string;
22};
23export declare const positionProp: {
24 [DIRECTION.VERTICAL]: string;
25 [DIRECTION.HORIZONTAL]: string;
26};
27export declare const marginProp: {
28 [DIRECTION.VERTICAL]: string;
29 [DIRECTION.HORIZONTAL]: string;
30};
31export declare const oppositeMarginProp: {
32 [DIRECTION.VERTICAL]: string;
33 [DIRECTION.HORIZONTAL]: string;
34};