Open devTeaa opened 2 years ago
The http get params not getting properly typed because of the 2nd params on first overload is assigned with any
Vue.http.get('something', { params: { foo: 'Foo' } }) // <-- the object is read as any
expected
Vue.http.get('something', { params: { foo: 'Foo' } }) // <-- the object should have autocomplete config
The http get params not getting properly typed because of the 2nd params on first overload is assigned with any
expected