mirror of https://github.com/sundowndev/http.git
parent
e740a5e93a
commit
3a9100f2fe
|
@ -1,5 +1,5 @@
|
||||||
import Vue from 'vue'
|
import Vue from 'vue'
|
||||||
import { ResponsePromise, Options, BeforeRequestHook, BeforeRetryHook, AfterResponseHook, HTTPError } from 'ky'
|
import ky, { ResponsePromise, Options, BeforeRequestHook, BeforeRetryHook, AfterResponseHook } from 'ky'
|
||||||
import './vuex'
|
import './vuex'
|
||||||
|
|
||||||
type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
|
type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
|
||||||
|
@ -145,7 +145,7 @@ interface NuxtHTTPInstance {
|
||||||
*
|
*
|
||||||
* This hook enables you to globally handle request errors.
|
* This hook enables you to globally handle request errors.
|
||||||
*/
|
*/
|
||||||
onError(hook: (error: HTTPError) => void): void
|
onError(hook: (error: ky.HTTPError) => void): void
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module '@nuxt/vue-app' {
|
declare module '@nuxt/vue-app' {
|
||||||
|
|
Loading…
Reference in New Issue