various-ui
Version:
This is a test version of the Vue 3 component library
18 lines (17 loc) • 506 B
TypeScript
import { ExtractPropTypes, PropType } from "vue";
export declare const UiFormItemPropsOption: {
readonly prop: {
readonly type: StringConstructor;
};
readonly label: {
readonly type: StringConstructor;
};
readonly width: {
readonly type: NumberConstructor;
};
readonly direction: {
readonly type: PropType<"row" | "column">;
readonly default: "row";
};
};
export type UiFormItemProps = ExtractPropTypes<typeof UiFormItemPropsOption>;