Skip to content

Commit 5fc1441

Browse files
sambowlerTheAlexLichter
authored andcommitted
fix(types): onResponseError typo (#203)
1 parent fdfc0a3 commit 5fc1441

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ interface NuxtAxiosInstance extends AxiosInstance {
1818
onResponse<T = any>(callback: (response: AxiosResponse<T>) => void): void;
1919
onError(callback: (error: AxiosError) => void): void;
2020
onRequestError(callback: (error: AxiosError) => void): void;
21-
onResponseErro(callback: (error: AxiosError) => void): void;
21+
onResponseError(callback: (error: AxiosError) => void): void;
2222
}
2323

2424
declare module 'vue/types/vue' {

0 commit comments

Comments
 (0)