style: prettified code

This commit is contained in:
Hazork 2021-10-12 19:58:31 -03:00
parent b42d3f13d7
commit 3ed92c8cc8

View File

@ -3,7 +3,8 @@ export interface AxiosInterceptor<T> {
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;
}