sorted unready sprites

This commit is contained in:
GitHub Action
2025-07-20 22:00:21 +00:00
parent 92f5e4d8b4
commit 647fa8fa5f
3349 changed files with 131 additions and 131 deletions

View File

@@ -1,6 +1,6 @@
import { URL } from 'url'
import Pool from 'undici-types/pool'
import Dispatcher from 'undici-types/dispatcher'
import Pool from './pool'
import Dispatcher from './dispatcher'
export default Agent

2
node_modules/undici-types/api.d.ts generated vendored
View File

@@ -1,6 +1,6 @@
import { URL, UrlObject } from 'url'
import { Duplex } from 'stream'
import Dispatcher from 'undici-types/dispatcher'
import Dispatcher from './dispatcher'
/** Performs an HTTP request. */
declare function request<TOpaque = null> (

View File

@@ -1,5 +1,5 @@
import Pool from 'undici-types/pool'
import Dispatcher from 'undici-types/dispatcher'
import Pool from './pool'
import Dispatcher from './dispatcher'
import { URL } from 'url'
export default BalancedPool

View File

@@ -1,4 +1,4 @@
import type { RequestInfo, Response, Request } from 'undici-types/fetch'
import type { RequestInfo, Response, Request } from './fetch'
export interface CacheStorage {
match (request: RequestInfo, options?: MultiCacheQueryOptions): Promise<Response | undefined>,

View File

@@ -1,6 +1,6 @@
import { URL } from 'url'
import Dispatcher from 'undici-types/dispatcher'
import buildConnector from 'undici-types/connector'
import Dispatcher from './dispatcher'
import buildConnector from './connector'
type ClientConnectOptions = Omit<Dispatcher.ConnectOptions, 'origin'>

View File

@@ -1,6 +1,6 @@
/// <reference types="node" />
import type { Headers } from 'undici-types/fetch'
import type { Headers } from './fetch'
export interface Cookie {
name: string

View File

@@ -1,7 +1,7 @@
import { Socket } from 'net'
import { URL } from 'url'
import buildConnector from 'undici-types/connector'
import Dispatcher from 'undici-types/dispatcher'
import buildConnector from './connector'
import Dispatcher from './dispatcher'
declare namespace DiagnosticsChannel {
interface Request {

View File

@@ -2,11 +2,11 @@ import { URL } from 'url'
import { Duplex, Readable, Writable } from 'stream'
import { EventEmitter } from 'events'
import { Blob } from 'buffer'
import { IncomingHttpHeaders } from 'undici-types/header'
import BodyReadable from 'undici-types/readable'
import { FormData } from 'undici-types/formdata'
import Errors from 'undici-types/errors'
import { Autocomplete } from 'undici-types/utility'
import { IncomingHttpHeaders } from './header'
import BodyReadable from './readable'
import { FormData } from './formdata'
import Errors from './errors'
import { Autocomplete } from './utility'
type AbortSignal = unknown

View File

@@ -1,5 +1,5 @@
import Agent from 'undici-types/agent'
import Dispatcher from 'undici-types/dispatcher'
import Agent from './agent'
import Dispatcher from './dispatcher'
export default EnvHttpProxyAgent

View File

@@ -1,5 +1,5 @@
import { IncomingHttpHeaders } from 'undici-types/header'
import Client from 'undici-types/client'
import { IncomingHttpHeaders } from './header'
import Client from './client'
export default Errors

View File

@@ -1,11 +1,11 @@
import { MessageEvent, ErrorEvent } from 'undici-types/websocket'
import Dispatcher from 'undici-types/dispatcher'
import { MessageEvent, ErrorEvent } from './websocket'
import Dispatcher from './dispatcher'
import {
EventListenerOptions,
AddEventListenerOptions,
EventListenerOrEventListenerObject
} from 'undici-types/patch'
} from './patch'
interface EventSourceEventMap {
error: ErrorEvent

View File

@@ -5,9 +5,9 @@
import { Blob } from 'buffer'
import { URL, URLSearchParams } from 'url'
import { ReadableStream } from 'stream/web'
import { FormData } from 'undici-types/formdata'
import { HeaderRecord } from 'undici-types/header'
import Dispatcher from 'undici-types/dispatcher'
import { FormData } from './formdata'
import { HeaderRecord } from './header'
import Dispatcher from './dispatcher'
export type RequestInfo = string | URL | Request

View File

@@ -2,7 +2,7 @@
/// <reference types="node" />
import { File } from 'buffer'
import { SpecIterableIterator } from 'undici-types/fetch'
import { SpecIterableIterator } from './fetch'
/**
* A `string` or `File` that represents a single value from a set of `FormData` key-value pairs.

View File

@@ -1,4 +1,4 @@
import Dispatcher from 'undici-types/dispatcher'
import Dispatcher from './dispatcher'
declare function setGlobalDispatcher<DispatcherImplementation extends Dispatcher> (dispatcher: DispatcherImplementation): void
declare function getGlobalDispatcher (): Dispatcher

View File

@@ -1,6 +1,6 @@
import { URL } from 'url'
import Dispatcher from 'undici-types/dispatcher'
import buildConnector from 'undici-types/connector'
import Dispatcher from './dispatcher'
import buildConnector from './connector'
type H2ClientOptions = Omit<Dispatcher.ConnectOptions, 'origin'>

View File

@@ -1,4 +1,4 @@
import Dispatcher from 'undici-types/dispatcher'
import Dispatcher from './dispatcher'
export declare class RedirectHandler implements Dispatcher.DispatchHandler {
constructor (

View File

@@ -1,4 +1,4 @@
import { Autocomplete } from 'undici-types/utility'
import { Autocomplete } from './utility'
/**
* The header type declaration of `undici`.

130
node_modules/undici-types/index.d.ts generated vendored
View File

@@ -1,75 +1,75 @@
import Dispatcher from 'undici-types/dispatcher'
import { setGlobalDispatcher, getGlobalDispatcher } from 'undici-types/global-dispatcher'
import { setGlobalOrigin, getGlobalOrigin } from 'undici-types/global-origin'
import Pool from 'undici-types/pool'
import { RedirectHandler, DecoratorHandler } from 'undici-types/handlers'
import Dispatcher from './dispatcher'
import { setGlobalDispatcher, getGlobalDispatcher } from './global-dispatcher'
import { setGlobalOrigin, getGlobalOrigin } from './global-origin'
import Pool from './pool'
import { RedirectHandler, DecoratorHandler } from './handlers'
import BalancedPool from 'undici-types/balanced-pool'
import Client from 'undici-types/client'
import H2CClient from 'undici-types/h2c-client'
import buildConnector from 'undici-types/connector'
import errors from 'undici-types/errors'
import Agent from 'undici-types/agent'
import MockClient from 'undici-types/mock-client'
import MockPool from 'undici-types/mock-pool'
import MockAgent from 'undici-types/mock-agent'
import { MockCallHistory, MockCallHistoryLog } from 'undici-types/mock-call-history'
import mockErrors from 'undici-types/mock-errors'
import ProxyAgent from 'undici-types/proxy-agent'
import EnvHttpProxyAgent from 'undici-types/env-http-proxy-agent'
import RetryHandler from 'undici-types/retry-handler'
import RetryAgent from 'undici-types/retry-agent'
import { request, pipeline, stream, connect, upgrade } from 'undici-types/api'
import interceptors from 'undici-types/interceptors'
import BalancedPool from './balanced-pool'
import Client from './client'
import H2CClient from './h2c-client'
import buildConnector from './connector'
import errors from './errors'
import Agent from './agent'
import MockClient from './mock-client'
import MockPool from './mock-pool'
import MockAgent from './mock-agent'
import { MockCallHistory, MockCallHistoryLog } from './mock-call-history'
import mockErrors from './mock-errors'
import ProxyAgent from './proxy-agent'
import EnvHttpProxyAgent from './env-http-proxy-agent'
import RetryHandler from './retry-handler'
import RetryAgent from './retry-agent'
import { request, pipeline, stream, connect, upgrade } from './api'
import interceptors from './interceptors'
export * from 'undici-types/util'
export * from 'undici-types/cookies'
export * from 'undici-types/eventsource'
export * from 'undici-types/fetch'
export * from 'undici-types/formdata'
export * from 'undici-types/diagnostics-channel'
export * from 'undici-types/websocket'
export * from 'undici-types/content-type'
export * from 'undici-types/cache'
export { Interceptable } from 'undici-types/mock-interceptor'
export * from './util'
export * from './cookies'
export * from './eventsource'
export * from './fetch'
export * from './formdata'
export * from './diagnostics-channel'
export * from './websocket'
export * from './content-type'
export * from './cache'
export { Interceptable } from './mock-interceptor'
export { Dispatcher, BalancedPool, Pool, Client, buildConnector, errors, Agent, request, stream, pipeline, connect, upgrade, setGlobalDispatcher, getGlobalDispatcher, setGlobalOrigin, getGlobalOrigin, interceptors, MockClient, MockPool, MockAgent, MockCallHistory, MockCallHistoryLog, mockErrors, ProxyAgent, EnvHttpProxyAgent, RedirectHandler, DecoratorHandler, RetryHandler, RetryAgent, H2CClient }
export default Undici
declare namespace Undici {
const Dispatcher: typeof import('undici-types/dispatcher').default
const Pool: typeof import('undici-types/pool').default
const RedirectHandler: typeof import ('undici-types/handlers').RedirectHandler
const DecoratorHandler: typeof import ('undici-types/handlers').DecoratorHandler
const RetryHandler: typeof import ('undici-types/retry-handler').default
const BalancedPool: typeof import('undici-types/balanced-pool').default
const Client: typeof import('undici-types/client').default
const H2CClient: typeof import('undici-types/h2c-client').default
const buildConnector: typeof import('undici-types/connector').default
const errors: typeof import('undici-types/errors').default
const Agent: typeof import('undici-types/agent').default
const setGlobalDispatcher: typeof import('undici-types/global-dispatcher').setGlobalDispatcher
const getGlobalDispatcher: typeof import('undici-types/global-dispatcher').getGlobalDispatcher
const request: typeof import('undici-types/api').request
const stream: typeof import('undici-types/api').stream
const pipeline: typeof import('undici-types/api').pipeline
const connect: typeof import('undici-types/api').connect
const upgrade: typeof import('undici-types/api').upgrade
const MockClient: typeof import('undici-types/mock-client').default
const MockPool: typeof import('undici-types/mock-pool').default
const MockAgent: typeof import('undici-types/mock-agent').default
const MockCallHistory: typeof import('undici-types/mock-call-history').MockCallHistory
const MockCallHistoryLog: typeof import('undici-types/mock-call-history').MockCallHistoryLog
const mockErrors: typeof import('undici-types/mock-errors').default
const fetch: typeof import('undici-types/fetch').fetch
const Headers: typeof import('undici-types/fetch').Headers
const Response: typeof import('undici-types/fetch').Response
const Request: typeof import('undici-types/fetch').Request
const FormData: typeof import('undici-types/formdata').FormData
const caches: typeof import('undici-types/cache').caches
const interceptors: typeof import('undici-types/interceptors').default
const Dispatcher: typeof import('./dispatcher').default
const Pool: typeof import('./pool').default
const RedirectHandler: typeof import ('./handlers').RedirectHandler
const DecoratorHandler: typeof import ('./handlers').DecoratorHandler
const RetryHandler: typeof import ('./retry-handler').default
const BalancedPool: typeof import('./balanced-pool').default
const Client: typeof import('./client').default
const H2CClient: typeof import('./h2c-client').default
const buildConnector: typeof import('./connector').default
const errors: typeof import('./errors').default
const Agent: typeof import('./agent').default
const setGlobalDispatcher: typeof import('./global-dispatcher').setGlobalDispatcher
const getGlobalDispatcher: typeof import('./global-dispatcher').getGlobalDispatcher
const request: typeof import('./api').request
const stream: typeof import('./api').stream
const pipeline: typeof import('./api').pipeline
const connect: typeof import('./api').connect
const upgrade: typeof import('./api').upgrade
const MockClient: typeof import('./mock-client').default
const MockPool: typeof import('./mock-pool').default
const MockAgent: typeof import('./mock-agent').default
const MockCallHistory: typeof import('./mock-call-history').MockCallHistory
const MockCallHistoryLog: typeof import('./mock-call-history').MockCallHistoryLog
const mockErrors: typeof import('./mock-errors').default
const fetch: typeof import('./fetch').fetch
const Headers: typeof import('./fetch').Headers
const Response: typeof import('./fetch').Response
const Request: typeof import('./fetch').Request
const FormData: typeof import('./formdata').FormData
const caches: typeof import('./cache').caches
const interceptors: typeof import('./interceptors').default
const cacheStores: {
MemoryCacheStore: typeof import('undici-types/cache-interceptor').default.MemoryCacheStore,
SqliteCacheStore: typeof import('undici-types/cache-interceptor').default.SqliteCacheStore
MemoryCacheStore: typeof import('./cache-interceptor').default.MemoryCacheStore,
SqliteCacheStore: typeof import('./cache-interceptor').default.SqliteCacheStore
}
}

View File

@@ -1,6 +1,6 @@
import CacheHandler from 'undici-types/cache-interceptor'
import Dispatcher from 'undici-types/dispatcher'
import RetryHandler from 'undici-types/retry-handler'
import CacheHandler from './cache-interceptor'
import Dispatcher from './dispatcher'
import RetryHandler from './retry-handler'
import { LookupOptions } from 'node:dns'
export default Interceptors

View File

@@ -1,8 +1,8 @@
import Agent from 'undici-types/agent'
import Dispatcher from 'undici-types/dispatcher'
import { Interceptable, MockInterceptor } from 'undici-types/mock-interceptor'
import Agent from './agent'
import Dispatcher from './dispatcher'
import { Interceptable, MockInterceptor } from './mock-interceptor'
import MockDispatch = MockInterceptor.MockDispatch
import { MockCallHistory } from 'undici-types/mock-call-history'
import { MockCallHistory } from './mock-call-history'
export default MockAgent

View File

@@ -1,4 +1,4 @@
import Dispatcher from 'undici-types/dispatcher'
import Dispatcher from './dispatcher'
declare namespace MockCallHistoryLog {
/** request's configuration properties */

View File

@@ -1,7 +1,7 @@
import Client from 'undici-types/client'
import Dispatcher from 'undici-types/dispatcher'
import MockAgent from 'undici-types/mock-agent'
import { MockInterceptor, Interceptable } from 'undici-types/mock-interceptor'
import Client from './client'
import Dispatcher from './dispatcher'
import MockAgent from './mock-agent'
import { MockInterceptor, Interceptable } from './mock-interceptor'
export default MockClient

View File

@@ -1,4 +1,4 @@
import Errors from 'undici-types/errors'
import Errors from './errors'
export default MockErrors

View File

@@ -1,6 +1,6 @@
import { IncomingHttpHeaders } from 'undici-types/header'
import Dispatcher from 'undici-types/dispatcher'
import { BodyInit, Headers } from 'undici-types/fetch'
import { IncomingHttpHeaders } from './header'
import Dispatcher from './dispatcher'
import { BodyInit, Headers } from './fetch'
/** The scope associated with a mock dispatch. */
declare class MockScope<TData extends object = object> {

View File

@@ -1,7 +1,7 @@
import Pool from 'undici-types/pool'
import MockAgent from 'undici-types/mock-agent'
import { Interceptable, MockInterceptor } from 'undici-types/mock-interceptor'
import Dispatcher from 'undici-types/dispatcher'
import Pool from './pool'
import MockAgent from './mock-agent'
import { Interceptable, MockInterceptor } from './mock-interceptor'
import Dispatcher from './dispatcher'
export default MockPool

View File

@@ -1,4 +1,4 @@
import Pool from 'undici-types/pool'
import Pool from './pool'
export default PoolStats

View File

@@ -1,7 +1,7 @@
import Client from 'undici-types/client'
import TPoolStats from 'undici-types/pool-stats'
import Client from './client'
import TPoolStats from './pool-stats'
import { URL } from 'url'
import Dispatcher from 'undici-types/dispatcher'
import Dispatcher from './dispatcher'
export default Pool

View File

@@ -1,7 +1,7 @@
import Agent from 'undici-types/agent'
import buildConnector from 'undici-types/connector'
import Dispatcher from 'undici-types/dispatcher'
import { IncomingHttpHeaders } from 'undici-types/header'
import Agent from './agent'
import buildConnector from './connector'
import Dispatcher from './dispatcher'
import { IncomingHttpHeaders } from './header'
export default ProxyAgent

View File

@@ -1,5 +1,5 @@
import Dispatcher from 'undici-types/dispatcher'
import RetryHandler from 'undici-types/retry-handler'
import Dispatcher from './dispatcher'
import RetryHandler from './retry-handler'
export default RetryAgent

View File

@@ -1,4 +1,4 @@
import Dispatcher from 'undici-types/dispatcher'
import Dispatcher from './dispatcher'
export default RetryHandler

View File

@@ -8,9 +8,9 @@ import {
EventListenerOptions,
AddEventListenerOptions,
EventListenerOrEventListenerObject
} from 'undici-types/patch'
import Dispatcher from 'undici-types/dispatcher'
import { HeadersInit } from 'undici-types/fetch'
} from './patch'
import Dispatcher from './dispatcher'
import { HeadersInit } from './fetch'
export type BinaryType = 'blob' | 'arraybuffer'