Skip to content

Commit

Permalink
fix(types): onResponseError typo (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
sambowler authored and TheAlexLichter committed Jan 29, 2019
1 parent fdfc0a3 commit 5fc1441
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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' {
Expand Down

0 comments on commit 5fc1441

Please sign in to comment.