Merge pull request #683 from silverlovesl/hot/issue-682

add type definition for Form
pull/734/head
三点包子 2019-04-11 20:16:53 +08:00 committed by GitHub
commit 9837004222
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -363,6 +363,12 @@ export declare class Form extends AntdComponent {
options: object;
createForm(context: Vue, options?: IformCreateOption): any;
/**
* Convert props to field value
* @param field
*/
createFormField(field: any): any;
}
declare module 'vue/types/vue' {