jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
35 lines (34 loc) • 753 B
TypeScript
export declare enum ALIGNMENT {
AUTO = "auto",
START = "start",
CENTER = "center",
END = "end"
}
export declare enum DIRECTION {
HORIZONTAL = "horizontal",
VERTICAL = "vertical"
}
export declare enum SCROLL_CHANGE_REASON {
OBSERVED = "observed",
REQUESTED = "requested"
}
export declare const scrollProp: {
vertical: string;
horizontal: string;
};
export declare const sizeProp: {
readonly vertical: "height";
readonly horizontal: "width";
};
export declare const positionProp: {
vertical: string;
horizontal: string;
};
export declare const marginProp: {
vertical: string;
horizontal: string;
};
export declare const oppositeMarginProp: {
vertical: string;
horizontal: string;
};