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";
2222import { Col } from "./grid/col" ;
2323import { DatePicker } from "./date-picker/date-picker" ;
2424import { Divider } from "./divider" ;
25+ import { Drawer } from "./drawer" ;
2526import { Dropdown } from "./dropdown/dropdown" ;
2627import { Form } from "./form/form" ;
2728import { Icon } from "./icon" ;
@@ -42,6 +43,7 @@ import { Radio } from "./radio/radio";
4243import { Rate } from "./rate" ;
4344import { Row } from "./grid/row" ;
4445import { Select } from "./select/select" ;
46+ import { Skeleton } from "./skeleton" ;
4547import { Slider } from "./slider" ;
4648import { Spin } from "./spin" ;
4749import { Steps } from "./steps/steps" ;
@@ -56,8 +58,6 @@ import { TimePicker } from "./time-picker";
5658import { Timeline } from "./timeline/timeline" ;
5759import { Tooltip } from "./tootip/tooltip" ;
5860import { Upload } from "./upload" ;
59- import { Drawer } from "./drawer" ;
60- import { Skeleton } from "./skeleton" ;
6161
6262/**
6363 * 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 {
184184 * Two-way binding for form, single file template can be bound using the directive v-decorator.
185185 * @type Function
186186 */
187- getFieldDecorator ( id : string , options : FieldDecoratorOptions ) ;
187+ getFieldDecorator ( id : string , options : FieldDecoratorOptions ) : any ;
188188
189189 /**
190190 * Get the error of a field.
191191 * @type Function (Function(name))
192192 */
193- getFieldError ( name : string ) ;
193+ getFieldError ( name : string ) : any ;
194194
195195 /**
196196 * Get the specified fields' error. If you don't specify a parameter, you will get all fields' error.
197197 * @type Function (Function([names: string[]))
198198 */
199- getFieldsError ( names : string [ ] ) ;
199+ getFieldsError ( names : string [ ] ) : any ;
200200
201201 /**
202202 * Get the specified fields' values. If you don't specify a parameter, you will get all fields' values.
203203 * @type Funtion (Function([fieldNames: string[]))
204204 */
205- getFieldsValue ( fieldNames : string [ ] ) ;
205+ getFieldsValue ( fieldNames : string [ ] ) : any ;
206206
207207 /**
208208 * Get the value of a field.
209209 * @type Function (Function(fieldName: string))
210210 */
211- getFieldValue ( fieldName : string ) ;
211+ getFieldValue ( fieldName : string ) : any ;
212212
213213 /**
214214 * 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