File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ import { Checkbox } from "./checkbox/checkbox";
22
22
import { Col } from "./grid/col" ;
23
23
import { DatePicker } from "./date-picker/date-picker" ;
24
24
import { Divider } from "./divider" ;
25
+ import { Drawer } from "./drawer" ;
25
26
import { Dropdown } from "./dropdown/dropdown" ;
26
27
import { Form } from "./form/form" ;
27
28
import { Icon } from "./icon" ;
@@ -42,6 +43,7 @@ import { Radio } from "./radio/radio";
42
43
import { Rate } from "./rate" ;
43
44
import { Row } from "./grid/row" ;
44
45
import { Select } from "./select/select" ;
46
+ import { Skeleton } from "./skeleton" ;
45
47
import { Slider } from "./slider" ;
46
48
import { Spin } from "./spin" ;
47
49
import { Steps } from "./steps/steps" ;
@@ -56,8 +58,6 @@ import { TimePicker } from "./time-picker";
56
58
import { Timeline } from "./timeline/timeline" ;
57
59
import { Tooltip } from "./tootip/tooltip" ;
58
60
import { Upload } from "./upload" ;
59
- import { Drawer } from "./drawer" ;
60
- import { Skeleton } from "./skeleton" ;
61
61
62
62
/**
63
63
* Install all ant-design-vue components into Vue.
Original file line number Diff line number Diff line change @@ -184,31 +184,31 @@ export interface WrappedFormUtils {
184
184
* Two-way binding for form, single file template can be bound using the directive v-decorator.
185
185
* @type Function
186
186
*/
187
- getFieldDecorator ( id : string , options : FieldDecoratorOptions ) ;
187
+ getFieldDecorator ( id : string , options : FieldDecoratorOptions ) : any ;
188
188
189
189
/**
190
190
* Get the error of a field.
191
191
* @type Function (Function(name))
192
192
*/
193
- getFieldError ( name : string ) ;
193
+ getFieldError ( name : string ) : any ;
194
194
195
195
/**
196
196
* Get the specified fields' error. If you don't specify a parameter, you will get all fields' error.
197
197
* @type Function (Function([names: string[]))
198
198
*/
199
- getFieldsError ( names : string [ ] ) ;
199
+ getFieldsError ( names : string [ ] ) : any ;
200
200
201
201
/**
202
202
* Get the specified fields' values. If you don't specify a parameter, you will get all fields' values.
203
203
* @type Funtion (Function([fieldNames: string[]))
204
204
*/
205
- getFieldsValue ( fieldNames : string [ ] ) ;
205
+ getFieldsValue ( fieldNames : string [ ] ) : any ;
206
206
207
207
/**
208
208
* Get the value of a field.
209
209
* @type Function (Function(fieldName: string))
210
210
*/
211
- getFieldValue ( fieldName : string ) ;
211
+ getFieldValue ( fieldName : string ) : any ;
212
212
213
213
/**
214
214
* Check whether any of fields is touched by getFieldDecorator's options.trigger event
You can’t perform that action at this time.
0 commit comments