@alauda/ui
Version:
Angular UI components by Alauda Frontend Team.
14 lines (13 loc) • 415 B
TypeScript
import { ValueOf } from '../internal/types';
export declare const LabelPosition: {
readonly Top: "top";
readonly Left: "left";
readonly Right: "right";
};
export declare const FormItemWidth: {
readonly Small: "small";
readonly Medium: "medium";
readonly Large: "large";
};
export type LabelPosition = ValueOf<typeof LabelPosition>;
export type FormItemWidth = ValueOf<typeof FormItemWidth>;