various-ui
Version:
This is a test version of the Vue 3 component library
18 lines (17 loc) • 519 B
TypeScript
import { ExtractPropTypes, PropType } from "vue";
import { UiTypes } from "@various/constants";
export declare const UiFormPropsOption: {
readonly data: {
readonly type: PropType<{
[name: string]: any;
}>;
readonly default: () => void;
};
readonly rules: {
readonly type: PropType<{
[name: string]: UiTypes.verifyRule[];
}>;
readonly default: () => void;
};
};
export type UiFormProps = ExtractPropTypes<typeof UiFormPropsOption>;