From 3ed92c8cc80e4b2f233272cf8579e34c4e6a7eae Mon Sep 17 00:00:00 2001 From: Hazork Date: Tue, 12 Oct 2021 19:58:31 -0300 Subject: [PATCH] style: prettified code --- src/interceptors/types.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/interceptors/types.ts b/src/interceptors/types.ts index 87724ad..aaf3807 100644 --- a/src/interceptors/types.ts +++ b/src/interceptors/types.ts @@ -3,7 +3,8 @@ export interface AxiosInterceptor { onRejected?(error: any): any; /** - * Should apply this interceptor to an already provided axios instance. Does not call this method explicitly. + * Should apply this interceptor to an already provided axios + * instance. Does not call this method explicitly. */ use(): void; }