element-pro-components
Version:
a component library for Vue 3 base on element-plus
7 lines (6 loc) • 482 B
TypeScript
import type { FormColumn, GroupFormColumn } from './type';
type FormItemBind = Omit<FormColumn, 'component' | 'max' | 'props' | 'prop' | 'span' | 'offset' | 'pull' | 'push' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'children' | 'show'>;
export declare function getFormItemBind(item: FormColumn): FormItemBind;
type GroupFormItemBind = Omit<GroupFormColumn, 'prop' | 'type' | 'children'>;
export declare function getGroupFormItemBind(item: GroupFormColumn): GroupFormItemBind;
export {};