@alanszp/jwt 12.0.0 → 13.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (155) hide show
  1. package/babel.config.js +7 -0
  2. package/dist/BitmaskUtils.d.ts +48 -0
  3. package/dist/BitmaskUtils.js +64 -0
  4. package/dist/BitmaskUtils.js.map +1 -0
  5. package/dist/BitmaskUtils.test.d.ts +1 -0
  6. package/dist/BitmaskUtils.test.js +152 -0
  7. package/dist/BitmaskUtils.test.js.map +1 -0
  8. package/dist/JWTUser.d.ts +58 -2
  9. package/dist/JWTUser.js +158 -3
  10. package/dist/JWTUser.js.map +1 -1
  11. package/dist/PermissionService.d.ts +26 -0
  12. package/dist/PermissionService.js +108 -0
  13. package/dist/PermissionService.js.map +1 -0
  14. package/dist/axiosPermissionsResolutionFactory.d.ts +4 -0
  15. package/dist/axiosPermissionsResolutionFactory.js +52 -0
  16. package/dist/axiosPermissionsResolutionFactory.js.map +1 -0
  17. package/dist/errors/NoPermissionError.d.ts +7 -0
  18. package/dist/errors/NoPermissionError.js +20 -0
  19. package/dist/errors/NoPermissionError.js.map +1 -0
  20. package/dist/errors/PermissionNotFound.d.ts +9 -0
  21. package/dist/errors/PermissionNotFound.js +24 -0
  22. package/dist/errors/PermissionNotFound.js.map +1 -0
  23. package/dist/errors/PermissionServiceError.d.ts +3 -0
  24. package/dist/errors/PermissionServiceError.js +8 -0
  25. package/dist/errors/PermissionServiceError.js.map +1 -0
  26. package/dist/errors/PermissionServiceNotInstantiated.d.ts +7 -0
  27. package/dist/errors/PermissionServiceNotInstantiated.js +17 -0
  28. package/dist/errors/PermissionServiceNotInstantiated.js.map +1 -0
  29. package/dist/errors/PermissionServiceRequestError.d.ts +9 -0
  30. package/dist/errors/PermissionServiceRequestError.js +23 -0
  31. package/dist/errors/PermissionServiceRequestError.js.map +1 -0
  32. package/dist/index.d.ts +7 -0
  33. package/dist/index.js +7 -0
  34. package/dist/index.js.map +1 -1
  35. package/dist/types.d.ts +7 -0
  36. package/jest.config.js +10 -0
  37. package/package.json +13 -5
  38. package/tsconfig.json +5 -2
  39. package/.gitignore +0 -3
  40. package/.npmignore +0 -3
  41. package/node_modules/@types/node/LICENSE +0 -21
  42. package/node_modules/@types/node/README.md +0 -15
  43. package/node_modules/@types/node/assert/strict.d.ts +0 -8
  44. package/node_modules/@types/node/assert.d.ts +0 -996
  45. package/node_modules/@types/node/async_hooks.d.ts +0 -539
  46. package/node_modules/@types/node/buffer.d.ts +0 -2362
  47. package/node_modules/@types/node/child_process.d.ts +0 -1540
  48. package/node_modules/@types/node/cluster.d.ts +0 -432
  49. package/node_modules/@types/node/console.d.ts +0 -415
  50. package/node_modules/@types/node/constants.d.ts +0 -19
  51. package/node_modules/@types/node/crypto.d.ts +0 -4487
  52. package/node_modules/@types/node/dgram.d.ts +0 -596
  53. package/node_modules/@types/node/diagnostics_channel.d.ts +0 -545
  54. package/node_modules/@types/node/dns/promises.d.ts +0 -425
  55. package/node_modules/@types/node/dns.d.ts +0 -809
  56. package/node_modules/@types/node/dom-events.d.ts +0 -122
  57. package/node_modules/@types/node/domain.d.ts +0 -170
  58. package/node_modules/@types/node/events.d.ts +0 -879
  59. package/node_modules/@types/node/fs/promises.d.ts +0 -1239
  60. package/node_modules/@types/node/fs.d.ts +0 -4311
  61. package/node_modules/@types/node/globals.d.ts +0 -411
  62. package/node_modules/@types/node/globals.global.d.ts +0 -1
  63. package/node_modules/@types/node/http.d.ts +0 -1887
  64. package/node_modules/@types/node/http2.d.ts +0 -2382
  65. package/node_modules/@types/node/https.d.ts +0 -550
  66. package/node_modules/@types/node/index.d.ts +0 -88
  67. package/node_modules/@types/node/inspector.d.ts +0 -2747
  68. package/node_modules/@types/node/module.d.ts +0 -315
  69. package/node_modules/@types/node/net.d.ts +0 -949
  70. package/node_modules/@types/node/os.d.ts +0 -478
  71. package/node_modules/@types/node/package.json +0 -229
  72. package/node_modules/@types/node/path.d.ts +0 -191
  73. package/node_modules/@types/node/perf_hooks.d.ts +0 -645
  74. package/node_modules/@types/node/process.d.ts +0 -1561
  75. package/node_modules/@types/node/punycode.d.ts +0 -117
  76. package/node_modules/@types/node/querystring.d.ts +0 -141
  77. package/node_modules/@types/node/readline/promises.d.ts +0 -150
  78. package/node_modules/@types/node/readline.d.ts +0 -539
  79. package/node_modules/@types/node/repl.d.ts +0 -430
  80. package/node_modules/@types/node/stream/consumers.d.ts +0 -12
  81. package/node_modules/@types/node/stream/promises.d.ts +0 -83
  82. package/node_modules/@types/node/stream/web.d.ts +0 -366
  83. package/node_modules/@types/node/stream.d.ts +0 -1701
  84. package/node_modules/@types/node/string_decoder.d.ts +0 -67
  85. package/node_modules/@types/node/test.d.ts +0 -1465
  86. package/node_modules/@types/node/timers/promises.d.ts +0 -93
  87. package/node_modules/@types/node/timers.d.ts +0 -240
  88. package/node_modules/@types/node/tls.d.ts +0 -1210
  89. package/node_modules/@types/node/trace_events.d.ts +0 -182
  90. package/node_modules/@types/node/ts4.8/assert/strict.d.ts +0 -8
  91. package/node_modules/@types/node/ts4.8/assert.d.ts +0 -996
  92. package/node_modules/@types/node/ts4.8/async_hooks.d.ts +0 -539
  93. package/node_modules/@types/node/ts4.8/buffer.d.ts +0 -2362
  94. package/node_modules/@types/node/ts4.8/child_process.d.ts +0 -1540
  95. package/node_modules/@types/node/ts4.8/cluster.d.ts +0 -432
  96. package/node_modules/@types/node/ts4.8/console.d.ts +0 -415
  97. package/node_modules/@types/node/ts4.8/constants.d.ts +0 -19
  98. package/node_modules/@types/node/ts4.8/crypto.d.ts +0 -4487
  99. package/node_modules/@types/node/ts4.8/dgram.d.ts +0 -596
  100. package/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts +0 -545
  101. package/node_modules/@types/node/ts4.8/dns/promises.d.ts +0 -425
  102. package/node_modules/@types/node/ts4.8/dns.d.ts +0 -809
  103. package/node_modules/@types/node/ts4.8/dom-events.d.ts +0 -122
  104. package/node_modules/@types/node/ts4.8/domain.d.ts +0 -170
  105. package/node_modules/@types/node/ts4.8/events.d.ts +0 -879
  106. package/node_modules/@types/node/ts4.8/fs/promises.d.ts +0 -1239
  107. package/node_modules/@types/node/ts4.8/fs.d.ts +0 -4311
  108. package/node_modules/@types/node/ts4.8/globals.d.ts +0 -411
  109. package/node_modules/@types/node/ts4.8/globals.global.d.ts +0 -1
  110. package/node_modules/@types/node/ts4.8/http.d.ts +0 -1887
  111. package/node_modules/@types/node/ts4.8/http2.d.ts +0 -2382
  112. package/node_modules/@types/node/ts4.8/https.d.ts +0 -550
  113. package/node_modules/@types/node/ts4.8/index.d.ts +0 -88
  114. package/node_modules/@types/node/ts4.8/inspector.d.ts +0 -2747
  115. package/node_modules/@types/node/ts4.8/module.d.ts +0 -315
  116. package/node_modules/@types/node/ts4.8/net.d.ts +0 -949
  117. package/node_modules/@types/node/ts4.8/os.d.ts +0 -478
  118. package/node_modules/@types/node/ts4.8/path.d.ts +0 -191
  119. package/node_modules/@types/node/ts4.8/perf_hooks.d.ts +0 -645
  120. package/node_modules/@types/node/ts4.8/process.d.ts +0 -1561
  121. package/node_modules/@types/node/ts4.8/punycode.d.ts +0 -117
  122. package/node_modules/@types/node/ts4.8/querystring.d.ts +0 -141
  123. package/node_modules/@types/node/ts4.8/readline/promises.d.ts +0 -150
  124. package/node_modules/@types/node/ts4.8/readline.d.ts +0 -539
  125. package/node_modules/@types/node/ts4.8/repl.d.ts +0 -430
  126. package/node_modules/@types/node/ts4.8/stream/consumers.d.ts +0 -12
  127. package/node_modules/@types/node/ts4.8/stream/promises.d.ts +0 -83
  128. package/node_modules/@types/node/ts4.8/stream/web.d.ts +0 -366
  129. package/node_modules/@types/node/ts4.8/stream.d.ts +0 -1701
  130. package/node_modules/@types/node/ts4.8/string_decoder.d.ts +0 -67
  131. package/node_modules/@types/node/ts4.8/test.d.ts +0 -1465
  132. package/node_modules/@types/node/ts4.8/timers/promises.d.ts +0 -93
  133. package/node_modules/@types/node/ts4.8/timers.d.ts +0 -240
  134. package/node_modules/@types/node/ts4.8/tls.d.ts +0 -1210
  135. package/node_modules/@types/node/ts4.8/trace_events.d.ts +0 -182
  136. package/node_modules/@types/node/ts4.8/tty.d.ts +0 -208
  137. package/node_modules/@types/node/ts4.8/url.d.ts +0 -927
  138. package/node_modules/@types/node/ts4.8/util.d.ts +0 -2183
  139. package/node_modules/@types/node/ts4.8/v8.d.ts +0 -764
  140. package/node_modules/@types/node/ts4.8/vm.d.ts +0 -903
  141. package/node_modules/@types/node/ts4.8/wasi.d.ts +0 -179
  142. package/node_modules/@types/node/ts4.8/worker_threads.d.ts +0 -691
  143. package/node_modules/@types/node/ts4.8/zlib.d.ts +0 -517
  144. package/node_modules/@types/node/tty.d.ts +0 -208
  145. package/node_modules/@types/node/url.d.ts +0 -927
  146. package/node_modules/@types/node/util.d.ts +0 -2183
  147. package/node_modules/@types/node/v8.d.ts +0 -764
  148. package/node_modules/@types/node/vm.d.ts +0 -903
  149. package/node_modules/@types/node/wasi.d.ts +0 -179
  150. package/node_modules/@types/node/worker_threads.d.ts +0 -691
  151. package/node_modules/@types/node/zlib.d.ts +0 -517
  152. package/src/JWTUser.ts +0 -85
  153. package/src/index.ts +0 -3
  154. package/src/jwt.ts +0 -81
  155. package/src/types.ts +0 -31
@@ -1,411 +0,0 @@
1
- export {}; // Make this a module
2
-
3
- // #region Fetch and friends
4
- // Conditional type aliases, used at the end of this file.
5
- // Will either be empty if lib-dom is included, or the undici version otherwise.
6
- type _Request = typeof globalThis extends { onmessage: any } ? {} : import("undici-types").Request;
7
- type _Response = typeof globalThis extends { onmessage: any } ? {} : import("undici-types").Response;
8
- type _FormData = typeof globalThis extends { onmessage: any } ? {} : import("undici-types").FormData;
9
- type _Headers = typeof globalThis extends { onmessage: any } ? {} : import("undici-types").Headers;
10
- type _RequestInit = typeof globalThis extends { onmessage: any } ? {}
11
- : import("undici-types").RequestInit;
12
- type _ResponseInit = typeof globalThis extends { onmessage: any } ? {}
13
- : import("undici-types").ResponseInit;
14
- type _File = typeof globalThis extends { onmessage: any } ? {} : import("node:buffer").File;
15
- // #endregion Fetch and friends
16
-
17
- declare global {
18
- // Declare "static" methods in Error
19
- interface ErrorConstructor {
20
- /** Create .stack property on a target object */
21
- captureStackTrace(targetObject: object, constructorOpt?: Function): void;
22
-
23
- /**
24
- * Optional override for formatting stack traces
25
- *
26
- * @see https://v8.dev/docs/stack-trace-api#customizing-stack-traces
27
- */
28
- prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
29
-
30
- stackTraceLimit: number;
31
- }
32
-
33
- /*-----------------------------------------------*
34
- * *
35
- * GLOBAL *
36
- * *
37
- ------------------------------------------------*/
38
-
39
- // For backwards compability
40
- interface NodeRequire extends NodeJS.Require {}
41
- interface RequireResolve extends NodeJS.RequireResolve {}
42
- interface NodeModule extends NodeJS.Module {}
43
-
44
- var process: NodeJS.Process;
45
- var console: Console;
46
-
47
- var __filename: string;
48
- var __dirname: string;
49
-
50
- var require: NodeRequire;
51
- var module: NodeModule;
52
-
53
- // Same as module.exports
54
- var exports: any;
55
-
56
- /**
57
- * Only available if `--expose-gc` is passed to the process.
58
- */
59
- var gc: undefined | (() => void);
60
-
61
- // #region borrowed
62
- // from https://github.com/microsoft/TypeScript/blob/38da7c600c83e7b31193a62495239a0fe478cb67/lib/lib.webworker.d.ts#L633 until moved to separate lib
63
- /** A controller object that allows you to abort one or more DOM requests as and when desired. */
64
- interface AbortController {
65
- /**
66
- * Returns the AbortSignal object associated with this object.
67
- */
68
-
69
- readonly signal: AbortSignal;
70
- /**
71
- * Invoking this method will set this object's AbortSignal's aborted flag and signal to any observers that the associated activity is to be aborted.
72
- */
73
- abort(reason?: any): void;
74
- }
75
-
76
- /** A signal object that allows you to communicate with a DOM request (such as a Fetch) and abort it if required via an AbortController object. */
77
- interface AbortSignal extends EventTarget {
78
- /**
79
- * Returns true if this AbortSignal's AbortController has signaled to abort, and false otherwise.
80
- */
81
- readonly aborted: boolean;
82
- readonly reason: any;
83
- onabort: null | ((this: AbortSignal, event: Event) => any);
84
- throwIfAborted(): void;
85
- }
86
-
87
- var AbortController: typeof globalThis extends { onmessage: any; AbortController: infer T } ? T
88
- : {
89
- prototype: AbortController;
90
- new(): AbortController;
91
- };
92
-
93
- var AbortSignal: typeof globalThis extends { onmessage: any; AbortSignal: infer T } ? T
94
- : {
95
- prototype: AbortSignal;
96
- new(): AbortSignal;
97
- abort(reason?: any): AbortSignal;
98
- timeout(milliseconds: number): AbortSignal;
99
- };
100
- // #endregion borrowed
101
-
102
- // #region Disposable
103
- interface SymbolConstructor {
104
- /**
105
- * A method that is used to release resources held by an object. Called by the semantics of the `using` statement.
106
- */
107
- readonly dispose: unique symbol;
108
-
109
- /**
110
- * A method that is used to asynchronously release resources held by an object. Called by the semantics of the `await using` statement.
111
- */
112
- readonly asyncDispose: unique symbol;
113
- }
114
-
115
- interface Disposable {
116
- [Symbol.dispose](): void;
117
- }
118
-
119
- interface AsyncDisposable {
120
- [Symbol.asyncDispose](): PromiseLike<void>;
121
- }
122
- // #endregion Disposable
123
-
124
- // #region ArrayLike.at()
125
- interface RelativeIndexable<T> {
126
- /**
127
- * Takes an integer value and returns the item at that index,
128
- * allowing for positive and negative integers.
129
- * Negative integers count back from the last item in the array.
130
- */
131
- at(index: number): T | undefined;
132
- }
133
- interface String extends RelativeIndexable<string> {}
134
- interface Array<T> extends RelativeIndexable<T> {}
135
- interface ReadonlyArray<T> extends RelativeIndexable<T> {}
136
- interface Int8Array extends RelativeIndexable<number> {}
137
- interface Uint8Array extends RelativeIndexable<number> {}
138
- interface Uint8ClampedArray extends RelativeIndexable<number> {}
139
- interface Int16Array extends RelativeIndexable<number> {}
140
- interface Uint16Array extends RelativeIndexable<number> {}
141
- interface Int32Array extends RelativeIndexable<number> {}
142
- interface Uint32Array extends RelativeIndexable<number> {}
143
- interface Float32Array extends RelativeIndexable<number> {}
144
- interface Float64Array extends RelativeIndexable<number> {}
145
- interface BigInt64Array extends RelativeIndexable<bigint> {}
146
- interface BigUint64Array extends RelativeIndexable<bigint> {}
147
- // #endregion ArrayLike.at() end
148
-
149
- /**
150
- * @since v17.0.0
151
- *
152
- * Creates a deep clone of an object.
153
- */
154
- function structuredClone<T>(
155
- value: T,
156
- transfer?: { transfer: ReadonlyArray<import("worker_threads").TransferListItem> },
157
- ): T;
158
-
159
- /*----------------------------------------------*
160
- * *
161
- * GLOBAL INTERFACES *
162
- * *
163
- *-----------------------------------------------*/
164
- namespace NodeJS {
165
- interface CallSite {
166
- /**
167
- * Value of "this"
168
- */
169
- getThis(): unknown;
170
-
171
- /**
172
- * Type of "this" as a string.
173
- * This is the name of the function stored in the constructor field of
174
- * "this", if available. Otherwise the object's [[Class]] internal
175
- * property.
176
- */
177
- getTypeName(): string | null;
178
-
179
- /**
180
- * Current function
181
- */
182
- getFunction(): Function | undefined;
183
-
184
- /**
185
- * Name of the current function, typically its name property.
186
- * If a name property is not available an attempt will be made to try
187
- * to infer a name from the function's context.
188
- */
189
- getFunctionName(): string | null;
190
-
191
- /**
192
- * Name of the property [of "this" or one of its prototypes] that holds
193
- * the current function
194
- */
195
- getMethodName(): string | null;
196
-
197
- /**
198
- * Name of the script [if this function was defined in a script]
199
- */
200
- getFileName(): string | undefined;
201
-
202
- /**
203
- * Current line number [if this function was defined in a script]
204
- */
205
- getLineNumber(): number | null;
206
-
207
- /**
208
- * Current column number [if this function was defined in a script]
209
- */
210
- getColumnNumber(): number | null;
211
-
212
- /**
213
- * A call site object representing the location where eval was called
214
- * [if this function was created using a call to eval]
215
- */
216
- getEvalOrigin(): string | undefined;
217
-
218
- /**
219
- * Is this a toplevel invocation, that is, is "this" the global object?
220
- */
221
- isToplevel(): boolean;
222
-
223
- /**
224
- * Does this call take place in code defined by a call to eval?
225
- */
226
- isEval(): boolean;
227
-
228
- /**
229
- * Is this call in native V8 code?
230
- */
231
- isNative(): boolean;
232
-
233
- /**
234
- * Is this a constructor call?
235
- */
236
- isConstructor(): boolean;
237
-
238
- /**
239
- * is this an async call (i.e. await, Promise.all(), or Promise.any())?
240
- */
241
- isAsync(): boolean;
242
-
243
- /**
244
- * is this an async call to Promise.all()?
245
- */
246
- isPromiseAll(): boolean;
247
-
248
- /**
249
- * returns the index of the promise element that was followed in
250
- * Promise.all() or Promise.any() for async stack traces, or null
251
- * if the CallSite is not an async
252
- */
253
- getPromiseIndex(): number | null;
254
-
255
- getScriptNameOrSourceURL(): string;
256
- getScriptHash(): string;
257
-
258
- getEnclosingColumnNumber(): number;
259
- getEnclosingLineNumber(): number;
260
- getPosition(): number;
261
-
262
- toString(): string;
263
- }
264
-
265
- interface ErrnoException extends Error {
266
- errno?: number | undefined;
267
- code?: string | undefined;
268
- path?: string | undefined;
269
- syscall?: string | undefined;
270
- }
271
-
272
- interface ReadableStream extends EventEmitter {
273
- readable: boolean;
274
- read(size?: number): string | Buffer;
275
- setEncoding(encoding: BufferEncoding): this;
276
- pause(): this;
277
- resume(): this;
278
- isPaused(): boolean;
279
- pipe<T extends WritableStream>(destination: T, options?: { end?: boolean | undefined }): T;
280
- unpipe(destination?: WritableStream): this;
281
- unshift(chunk: string | Uint8Array, encoding?: BufferEncoding): void;
282
- wrap(oldStream: ReadableStream): this;
283
- [Symbol.asyncIterator](): AsyncIterableIterator<string | Buffer>;
284
- }
285
-
286
- interface WritableStream extends EventEmitter {
287
- writable: boolean;
288
- write(buffer: Uint8Array | string, cb?: (err?: Error | null) => void): boolean;
289
- write(str: string, encoding?: BufferEncoding, cb?: (err?: Error | null) => void): boolean;
290
- end(cb?: () => void): this;
291
- end(data: string | Uint8Array, cb?: () => void): this;
292
- end(str: string, encoding?: BufferEncoding, cb?: () => void): this;
293
- }
294
-
295
- interface ReadWriteStream extends ReadableStream, WritableStream {}
296
-
297
- interface RefCounted {
298
- ref(): this;
299
- unref(): this;
300
- }
301
-
302
- type TypedArray =
303
- | Uint8Array
304
- | Uint8ClampedArray
305
- | Uint16Array
306
- | Uint32Array
307
- | Int8Array
308
- | Int16Array
309
- | Int32Array
310
- | BigUint64Array
311
- | BigInt64Array
312
- | Float32Array
313
- | Float64Array;
314
- type ArrayBufferView = TypedArray | DataView;
315
-
316
- interface Require {
317
- (id: string): any;
318
- resolve: RequireResolve;
319
- cache: Dict<NodeModule>;
320
- /**
321
- * @deprecated
322
- */
323
- extensions: RequireExtensions;
324
- main: Module | undefined;
325
- }
326
-
327
- interface RequireResolve {
328
- (id: string, options?: { paths?: string[] | undefined }): string;
329
- paths(request: string): string[] | null;
330
- }
331
-
332
- interface RequireExtensions extends Dict<(m: Module, filename: string) => any> {
333
- ".js": (m: Module, filename: string) => any;
334
- ".json": (m: Module, filename: string) => any;
335
- ".node": (m: Module, filename: string) => any;
336
- }
337
- interface Module {
338
- /**
339
- * `true` if the module is running during the Node.js preload
340
- */
341
- isPreloading: boolean;
342
- exports: any;
343
- require: Require;
344
- id: string;
345
- filename: string;
346
- loaded: boolean;
347
- /** @deprecated since v14.6.0 Please use `require.main` and `module.children` instead. */
348
- parent: Module | null | undefined;
349
- children: Module[];
350
- /**
351
- * @since v11.14.0
352
- *
353
- * The directory name of the module. This is usually the same as the path.dirname() of the module.id.
354
- */
355
- path: string;
356
- paths: string[];
357
- }
358
-
359
- interface Dict<T> {
360
- [key: string]: T | undefined;
361
- }
362
-
363
- interface ReadOnlyDict<T> {
364
- readonly [key: string]: T | undefined;
365
- }
366
- }
367
-
368
- interface RequestInit extends _RequestInit {}
369
-
370
- function fetch(
371
- input: string | URL | globalThis.Request,
372
- init?: RequestInit,
373
- ): Promise<Response>;
374
-
375
- interface Request extends _Request {}
376
- var Request: typeof globalThis extends {
377
- onmessage: any;
378
- Request: infer T;
379
- } ? T
380
- : typeof import("undici-types").Request;
381
-
382
- interface ResponseInit extends _ResponseInit {}
383
-
384
- interface Response extends _Response {}
385
- var Response: typeof globalThis extends {
386
- onmessage: any;
387
- Response: infer T;
388
- } ? T
389
- : typeof import("undici-types").Response;
390
-
391
- interface FormData extends _FormData {}
392
- var FormData: typeof globalThis extends {
393
- onmessage: any;
394
- FormData: infer T;
395
- } ? T
396
- : typeof import("undici-types").FormData;
397
-
398
- interface Headers extends _Headers {}
399
- var Headers: typeof globalThis extends {
400
- onmessage: any;
401
- Headers: infer T;
402
- } ? T
403
- : typeof import("undici-types").Headers;
404
-
405
- interface File extends _File {}
406
- var File: typeof globalThis extends {
407
- onmessage: any;
408
- File: infer T;
409
- } ? T
410
- : typeof import("node:buffer").File;
411
- }
@@ -1 +0,0 @@
1
- declare var global: typeof globalThis;