fix(types): `onResponseError` typo (#203)

master
Sam Bowler 2019-01-29 11:30:39 +00:00 committed by Alexander Lichter
parent fdfc0a3cde
commit 5fc1441ab7
1 changed files with 1 additions and 1 deletions

2
index.d.ts vendored
View File

@ -18,7 +18,7 @@ interface NuxtAxiosInstance extends AxiosInstance {
onResponse<T = any>(callback: (response: AxiosResponse<T>) => void): void;
onError(callback: (error: AxiosError) => void): void;
onRequestError(callback: (error: AxiosError) => void): void;
onResponseErro(callback: (error: AxiosError) => void): void;
onResponseError(callback: (error: AxiosError) => void): void;
}
declare module 'vue/types/vue' {