-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR-URL: #49559 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
- Loading branch information
1 parent
da7962f
commit ef062b9
Showing
33 changed files
with
2,679 additions
and
311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,3 @@ | ||
import Dispatcher from'./types/dispatcher' | ||
import { setGlobalDispatcher, getGlobalDispatcher } from './types/global-dispatcher' | ||
import { setGlobalOrigin, getGlobalOrigin } from './types/global-origin' | ||
import Pool from'./types/pool' | ||
import { RedirectHandler, DecoratorHandler } from './types/handlers' | ||
|
||
import BalancedPool from './types/balanced-pool' | ||
import Client from'./types/client' | ||
import buildConnector from'./types/connector' | ||
import errors from'./types/errors' | ||
import Agent from'./types/agent' | ||
import MockClient from'./types/mock-client' | ||
import MockPool from'./types/mock-pool' | ||
import MockAgent from'./types/mock-agent' | ||
import mockErrors from'./types/mock-errors' | ||
import ProxyAgent from'./types/proxy-agent' | ||
import { request, pipeline, stream, connect, upgrade } from './types/api' | ||
|
||
export * from './types/cookies' | ||
export * from './types/fetch' | ||
export * from './types/file' | ||
export * from './types/filereader' | ||
export * from './types/formdata' | ||
export * from './types/diagnostics-channel' | ||
export * from './types/websocket' | ||
export * from './types/content-type' | ||
export * from './types/cache' | ||
export { Interceptable } from './types/mock-interceptor' | ||
|
||
export { Dispatcher, BalancedPool, Pool, Client, buildConnector, errors, Agent, request, stream, pipeline, connect, upgrade, setGlobalDispatcher, getGlobalDispatcher, setGlobalOrigin, getGlobalOrigin, MockClient, MockPool, MockAgent, mockErrors, ProxyAgent, RedirectHandler, DecoratorHandler } | ||
export * from './types/index' | ||
import Undici from './types/index' | ||
export default Undici | ||
|
||
declare namespace Undici { | ||
var Dispatcher: typeof import('./types/dispatcher').default | ||
var Pool: typeof import('./types/pool').default; | ||
var RedirectHandler: typeof import ('./types/handlers').RedirectHandler | ||
var DecoratorHandler: typeof import ('./types/handlers').DecoratorHandler | ||
var createRedirectInterceptor: typeof import ('./types/interceptors').createRedirectInterceptor | ||
var BalancedPool: typeof import('./types/balanced-pool').default; | ||
var Client: typeof import('./types/client').default; | ||
var buildConnector: typeof import('./types/connector').default; | ||
var errors: typeof import('./types/errors').default; | ||
var Agent: typeof import('./types/agent').default; | ||
var setGlobalDispatcher: typeof import('./types/global-dispatcher').setGlobalDispatcher; | ||
var getGlobalDispatcher: typeof import('./types/global-dispatcher').getGlobalDispatcher; | ||
var request: typeof import('./types/api').request; | ||
var stream: typeof import('./types/api').stream; | ||
var pipeline: typeof import('./types/api').pipeline; | ||
var connect: typeof import('./types/api').connect; | ||
var upgrade: typeof import('./types/api').upgrade; | ||
var MockClient: typeof import('./types/mock-client').default; | ||
var MockPool: typeof import('./types/mock-pool').default; | ||
var MockAgent: typeof import('./types/mock-agent').default; | ||
var mockErrors: typeof import('./types/mock-errors').default; | ||
var fetch: typeof import('./types/fetch').fetch; | ||
var caches: typeof import('./types/cache').caches; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.