undici-types
Version:
A stand-alone types package for Undici
17 lines (13 loc) • 508 B
TypeScript
import Dispatcher from './dispatcher'
export declare class RedirectHandler implements Dispatcher.DispatchHandler {
static buildDispatch (dispatcher: Dispatcher, maxRedirections: number): Dispatcher.Dispatch
constructor (
dispatch: Dispatcher.Dispatch,
maxRedirections: number,
opts: Dispatcher.DispatchOptions,
handler: Dispatcher.DispatchHandler
)
}
export declare class DecoratorHandler implements Dispatcher.DispatchHandler {
constructor (handler: Dispatcher.DispatchHandler)
}