export interface IPlugin extends Partial { name: string; } export interface IPluginHooks { beforeRequest(): any; successRequest(): any; failRequest(): any; } export interface IPluginContext { } export interface IRequestContext { }