You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
608 B
16 lines
608 B
import Form from './src/form.vue';
|
|
import FormItem from './src/form-item.vue';
|
|
import type { SFCWithInstall } from 'element-plus/es/utils';
|
|
export declare const ElForm: SFCWithInstall<typeof Form> & {
|
|
FormItem: typeof FormItem;
|
|
};
|
|
export default ElForm;
|
|
export declare const ElFormItem: SFCWithInstall<typeof FormItem>;
|
|
export * from './src/form';
|
|
export * from './src/form-item';
|
|
export * from './src/types';
|
|
export * from './src/constants';
|
|
export * from './src/hooks';
|
|
export declare type FormInstance = InstanceType<typeof Form>;
|
|
export declare type FormItemInstance = InstanceType<typeof FormItem>;
|