comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
13 lines (11 loc) • 464 B
TypeScript
import { PropType, ExtractPropTypes } from 'vue';
import { RuleItem } from 'async-validator';
export declare const formItemProps: {
readonly label: StringConstructor;
readonly labelWidth: StringConstructor;
readonly required: BooleanConstructor;
readonly prop: StringConstructor;
readonly propIndex: NumberConstructor;
readonly rules: PropType<RuleItem | RuleItem[]>;
};
export type FormItemProps = ExtractPropTypes<typeof formItemProps>;