seroval-plugins
Advanced tools
| import { SerovalNode } from "seroval"; | ||
| //#endregion | ||
| //#region web/abort-signal.d.ts | ||
| declare const AbortSignalPlugin: import("seroval").Plugin<AbortSignal, { | ||
| reason?: SerovalNode; | ||
| controller?: SerovalNode; | ||
| factory?: SerovalNode; | ||
| }>; | ||
| //#endregion | ||
| //#region web/blob.d.ts | ||
| type BlobNode = { | ||
| type: SerovalNode; | ||
| buffer: SerovalNode; | ||
| }; | ||
| declare const BlobPlugin: import("seroval").Plugin<Blob, BlobNode>; | ||
| //#endregion | ||
| //#region web/custom-event.d.ts | ||
| type CustomEventNode = { | ||
| type: SerovalNode; | ||
| options: SerovalNode; | ||
| }; | ||
| declare const CustomEventPlugin: import("seroval").Plugin<CustomEvent<any>, CustomEventNode>; | ||
| //#endregion | ||
| //#region web/dom-exception.d.ts | ||
| type DOMExceptionNode = { | ||
| name: SerovalNode; | ||
| message: SerovalNode; | ||
| }; | ||
| declare const DOMExceptionPlugin: import("seroval").Plugin<DOMException, DOMExceptionNode>; | ||
| //#endregion | ||
| //#region web/event.d.ts | ||
| type EventNode = { | ||
| type: SerovalNode; | ||
| options: SerovalNode; | ||
| }; | ||
| declare const EventPlugin: import("seroval").Plugin<Event, EventNode>; | ||
| //#endregion | ||
| //#region web/file.d.ts | ||
| type FileNode = { | ||
| name: SerovalNode; | ||
| options: SerovalNode; | ||
| buffer: SerovalNode; | ||
| }; | ||
| declare const FilePlugin: import("seroval").Plugin<File, FileNode>; | ||
| //#endregion | ||
| //#region web/form-data.d.ts | ||
| type FormDataNode = { | ||
| factory: SerovalNode; | ||
| entries: SerovalNode; | ||
| }; | ||
| declare const FormDataPlugin: import("seroval").Plugin<FormData, FormDataNode>; | ||
| //#endregion | ||
| //#region web/headers.d.ts | ||
| declare const HeadersPlugin: import("seroval").Plugin<Headers, { | ||
| value: SerovalNode; | ||
| }>; | ||
| //#endregion | ||
| //#region web/image-data.d.ts | ||
| type ImageDataNode = { | ||
| data: SerovalNode; | ||
| width: SerovalNode; | ||
| height: SerovalNode; | ||
| options: SerovalNode; | ||
| }; | ||
| declare const ImageDataPlugin: import("seroval").Plugin<ImageData, ImageDataNode>; | ||
| //#endregion | ||
| //#region web/readable-stream.d.ts | ||
| type ReadableStreamNode = { | ||
| factory: SerovalNode; | ||
| stream: SerovalNode; | ||
| }; | ||
| declare const ReadableStreamPlugin: import("seroval").Plugin<ReadableStream<any>, ReadableStreamNode>; | ||
| //#endregion | ||
| //#region web/request.d.ts | ||
| type RequestNode = { | ||
| url: SerovalNode; | ||
| options: SerovalNode; | ||
| }; | ||
| declare const RequestPlugin: import("seroval").Plugin<Request, RequestNode>; | ||
| //#endregion | ||
| //#region web/response.d.ts | ||
| type ResponseNode = { | ||
| body: SerovalNode; | ||
| options: SerovalNode; | ||
| }; | ||
| declare const ResponsePlugin: import("seroval").Plugin<Response, ResponseNode>; | ||
| //#endregion | ||
| //#region web/url.d.ts | ||
| declare const URLPlugin: import("seroval").Plugin<URL, { | ||
| value: SerovalNode; | ||
| }>; | ||
| //#endregion | ||
| //#region web/url-search-params.d.ts | ||
| declare const URLSearchParamsPlugin: import("seroval").Plugin<URLSearchParams, { | ||
| value: SerovalNode; | ||
| }>; | ||
| declare namespace index_d_exports { | ||
| export { AbortSignalPlugin, BlobPlugin, CustomEventPlugin, DOMExceptionPlugin, EventPlugin, FilePlugin, FormDataPlugin, HeadersPlugin, ImageDataPlugin, ReadableStreamPlugin, RequestPlugin, ResponsePlugin, URLPlugin, URLSearchParamsPlugin }; | ||
| } | ||
| //#endregion | ||
| export { RequestPlugin as a, HeadersPlugin as c, EventPlugin as d, DOMExceptionPlugin as f, AbortSignalPlugin as h, ResponsePlugin as i, FormDataPlugin as l, BlobPlugin as m, URLSearchParamsPlugin as n, ReadableStreamPlugin as o, CustomEventPlugin as p, URLPlugin as r, ImageDataPlugin as s, index_d_exports as t, FilePlugin as u }; |
| import { SerovalNode } from "seroval"; | ||
| //#region web/abort-signal.d.ts | ||
| declare const AbortSignalPlugin: import("seroval").Plugin<AbortSignal, { | ||
| reason?: SerovalNode; | ||
| controller?: SerovalNode; | ||
| factory?: SerovalNode; | ||
| }>; | ||
| //#endregion | ||
| //#region web/blob.d.ts | ||
| type BlobNode = { | ||
| type: SerovalNode; | ||
| buffer: SerovalNode; | ||
| }; | ||
| declare const BlobPlugin: import("seroval").Plugin<Blob, BlobNode>; | ||
| //#endregion | ||
| //#region web/custom-event.d.ts | ||
| type CustomEventNode = { | ||
| type: SerovalNode; | ||
| options: SerovalNode; | ||
| }; | ||
| declare const CustomEventPlugin: import("seroval").Plugin<CustomEvent<any>, CustomEventNode>; | ||
| //#endregion | ||
| //#region web/dom-exception.d.ts | ||
| type DOMExceptionNode = { | ||
| name: SerovalNode; | ||
| message: SerovalNode; | ||
| }; | ||
| declare const DOMExceptionPlugin: import("seroval").Plugin<DOMException, DOMExceptionNode>; | ||
| //#endregion | ||
| //#region web/event.d.ts | ||
| type EventNode = { | ||
| type: SerovalNode; | ||
| options: SerovalNode; | ||
| }; | ||
| declare const EventPlugin: import("seroval").Plugin<Event, EventNode>; | ||
| //#endregion | ||
| //#region web/file.d.ts | ||
| type FileNode = { | ||
| name: SerovalNode; | ||
| options: SerovalNode; | ||
| buffer: SerovalNode; | ||
| }; | ||
| declare const FilePlugin: import("seroval").Plugin<File, FileNode>; | ||
| //#endregion | ||
| //#region web/form-data.d.ts | ||
| type FormDataNode = { | ||
| factory: SerovalNode; | ||
| entries: SerovalNode; | ||
| }; | ||
| declare const FormDataPlugin: import("seroval").Plugin<FormData, FormDataNode>; | ||
| //#endregion | ||
| //#region web/headers.d.ts | ||
| declare const HeadersPlugin: import("seroval").Plugin<Headers, { | ||
| value: SerovalNode; | ||
| }>; | ||
| //#endregion | ||
| //#region web/image-data.d.ts | ||
| type ImageDataNode = { | ||
| data: SerovalNode; | ||
| width: SerovalNode; | ||
| height: SerovalNode; | ||
| options: SerovalNode; | ||
| }; | ||
| declare const ImageDataPlugin: import("seroval").Plugin<ImageData, ImageDataNode>; | ||
| //#endregion | ||
| //#region web/readable-stream.d.ts | ||
| type ReadableStreamNode = { | ||
| factory: SerovalNode; | ||
| stream: SerovalNode; | ||
| }; | ||
| declare const ReadableStreamPlugin: import("seroval").Plugin<ReadableStream<any>, ReadableStreamNode>; | ||
| //#endregion | ||
| //#region web/request.d.ts | ||
| type RequestNode = { | ||
| url: SerovalNode; | ||
| options: SerovalNode; | ||
| }; | ||
| declare const RequestPlugin: import("seroval").Plugin<Request, RequestNode>; | ||
| //#endregion | ||
| //#region web/response.d.ts | ||
| type ResponseNode = { | ||
| body: SerovalNode; | ||
| options: SerovalNode; | ||
| }; | ||
| declare const ResponsePlugin: import("seroval").Plugin<Response, ResponseNode>; | ||
| //#endregion | ||
| //#region web/url.d.ts | ||
| declare const URLPlugin: import("seroval").Plugin<URL, { | ||
| value: SerovalNode; | ||
| }>; | ||
| //#endregion | ||
| //#region web/url-search-params.d.ts | ||
| declare const URLSearchParamsPlugin: import("seroval").Plugin<URLSearchParams, { | ||
| value: SerovalNode; | ||
| }>; | ||
| declare namespace index_d_exports { | ||
| export { AbortSignalPlugin, BlobPlugin, CustomEventPlugin, DOMExceptionPlugin, EventPlugin, FilePlugin, FormDataPlugin, HeadersPlugin, ImageDataPlugin, ReadableStreamPlugin, RequestPlugin, ResponsePlugin, URLPlugin, URLSearchParamsPlugin }; | ||
| } | ||
| //#endregion | ||
| export { RequestPlugin as a, HeadersPlugin as c, EventPlugin as d, DOMExceptionPlugin as f, AbortSignalPlugin as h, ResponsePlugin as i, FormDataPlugin as l, BlobPlugin as m, URLSearchParamsPlugin as n, ReadableStreamPlugin as o, CustomEventPlugin as p, URLPlugin as r, ImageDataPlugin as s, index_d_exports as t, FilePlugin as u }; |
| import { SerovalNode } from "seroval"; | ||
| //#endregion | ||
| //#region web/abort-signal.d.ts | ||
| declare const AbortSignalPlugin: import("seroval").Plugin<AbortSignal, { | ||
| reason?: SerovalNode; | ||
| controller?: SerovalNode; | ||
| factory?: SerovalNode; | ||
| }>; | ||
| //#endregion | ||
| //#region web/blob.d.ts | ||
| type BlobNode = { | ||
| type: SerovalNode; | ||
| buffer: SerovalNode; | ||
| }; | ||
| declare const BlobPlugin: import("seroval").Plugin<Blob, BlobNode>; | ||
| //#endregion | ||
| //#region web/custom-event.d.ts | ||
| type CustomEventNode = { | ||
| type: SerovalNode; | ||
| options: SerovalNode; | ||
| }; | ||
| declare const CustomEventPlugin: import("seroval").Plugin<CustomEvent<any>, CustomEventNode>; | ||
| //#endregion | ||
| //#region web/dom-exception.d.ts | ||
| type DOMExceptionNode = { | ||
| name: SerovalNode; | ||
| message: SerovalNode; | ||
| }; | ||
| declare const DOMExceptionPlugin: import("seroval").Plugin<DOMException, DOMExceptionNode>; | ||
| //#endregion | ||
| //#region web/event.d.ts | ||
| type EventNode = { | ||
| type: SerovalNode; | ||
| options: SerovalNode; | ||
| }; | ||
| declare const EventPlugin: import("seroval").Plugin<Event, EventNode>; | ||
| //#endregion | ||
| //#region web/file.d.ts | ||
| type FileNode = { | ||
| name: SerovalNode; | ||
| options: SerovalNode; | ||
| buffer: SerovalNode; | ||
| }; | ||
| declare const FilePlugin: import("seroval").Plugin<File, FileNode>; | ||
| //#endregion | ||
| //#region web/form-data.d.ts | ||
| type FormDataNode = { | ||
| factory: SerovalNode; | ||
| entries: SerovalNode; | ||
| }; | ||
| declare const FormDataPlugin: import("seroval").Plugin<FormData, FormDataNode>; | ||
| //#endregion | ||
| //#region web/headers.d.ts | ||
| declare const HeadersPlugin: import("seroval").Plugin<Headers, { | ||
| value: SerovalNode; | ||
| }>; | ||
| //#endregion | ||
| //#region web/image-data.d.ts | ||
| type ImageDataNode = { | ||
| data: SerovalNode; | ||
| width: SerovalNode; | ||
| height: SerovalNode; | ||
| options: SerovalNode; | ||
| }; | ||
| declare const ImageDataPlugin: import("seroval").Plugin<ImageData, ImageDataNode>; | ||
| //#endregion | ||
| //#region web/readable-stream.d.ts | ||
| type ReadableStreamNode = { | ||
| factory: SerovalNode; | ||
| stream: SerovalNode; | ||
| }; | ||
| declare const ReadableStreamPlugin: import("seroval").Plugin<ReadableStream<any>, ReadableStreamNode>; | ||
| //#endregion | ||
| //#region web/request.d.ts | ||
| type RequestNode = { | ||
| url: SerovalNode; | ||
| options: SerovalNode; | ||
| }; | ||
| declare const RequestPlugin: import("seroval").Plugin<Request, RequestNode>; | ||
| //#endregion | ||
| //#region web/response.d.ts | ||
| type ResponseNode = { | ||
| body: SerovalNode; | ||
| options: SerovalNode; | ||
| }; | ||
| declare const ResponsePlugin: import("seroval").Plugin<Response, ResponseNode>; | ||
| //#endregion | ||
| //#region web/url.d.ts | ||
| declare const URLPlugin: import("seroval").Plugin<URL, { | ||
| value: SerovalNode; | ||
| }>; | ||
| //#endregion | ||
| //#region web/url-search-params.d.ts | ||
| declare const URLSearchParamsPlugin: import("seroval").Plugin<URLSearchParams, { | ||
| value: SerovalNode; | ||
| }>; | ||
| declare namespace index_d_exports { | ||
| export { AbortSignalPlugin, BlobPlugin, CustomEventPlugin, DOMExceptionPlugin, EventPlugin, FilePlugin, FormDataPlugin, HeadersPlugin, ImageDataPlugin, ReadableStreamPlugin, RequestPlugin, ResponsePlugin, URLPlugin, URLSearchParamsPlugin }; | ||
| } | ||
| //#endregion | ||
| export { RequestPlugin as a, HeadersPlugin as c, EventPlugin as d, DOMExceptionPlugin as f, AbortSignalPlugin as h, ResponsePlugin as i, FormDataPlugin as l, BlobPlugin as m, URLSearchParamsPlugin as n, ReadableStreamPlugin as o, CustomEventPlugin as p, URLPlugin as r, ImageDataPlugin as s, index_d_exports as t, FilePlugin as u }; |
| import { SerovalNode } from "seroval"; | ||
| //#region web/abort-signal.d.ts | ||
| declare const AbortSignalPlugin: import("seroval").Plugin<AbortSignal, { | ||
| reason?: SerovalNode; | ||
| controller?: SerovalNode; | ||
| factory?: SerovalNode; | ||
| }>; | ||
| //#endregion | ||
| //#region web/blob.d.ts | ||
| type BlobNode = { | ||
| type: SerovalNode; | ||
| buffer: SerovalNode; | ||
| }; | ||
| declare const BlobPlugin: import("seroval").Plugin<Blob, BlobNode>; | ||
| //#endregion | ||
| //#region web/custom-event.d.ts | ||
| type CustomEventNode = { | ||
| type: SerovalNode; | ||
| options: SerovalNode; | ||
| }; | ||
| declare const CustomEventPlugin: import("seroval").Plugin<CustomEvent<any>, CustomEventNode>; | ||
| //#endregion | ||
| //#region web/dom-exception.d.ts | ||
| type DOMExceptionNode = { | ||
| name: SerovalNode; | ||
| message: SerovalNode; | ||
| }; | ||
| declare const DOMExceptionPlugin: import("seroval").Plugin<DOMException, DOMExceptionNode>; | ||
| //#endregion | ||
| //#region web/event.d.ts | ||
| type EventNode = { | ||
| type: SerovalNode; | ||
| options: SerovalNode; | ||
| }; | ||
| declare const EventPlugin: import("seroval").Plugin<Event, EventNode>; | ||
| //#endregion | ||
| //#region web/file.d.ts | ||
| type FileNode = { | ||
| name: SerovalNode; | ||
| options: SerovalNode; | ||
| buffer: SerovalNode; | ||
| }; | ||
| declare const FilePlugin: import("seroval").Plugin<File, FileNode>; | ||
| //#endregion | ||
| //#region web/form-data.d.ts | ||
| type FormDataNode = { | ||
| factory: SerovalNode; | ||
| entries: SerovalNode; | ||
| }; | ||
| declare const FormDataPlugin: import("seroval").Plugin<FormData, FormDataNode>; | ||
| //#endregion | ||
| //#region web/headers.d.ts | ||
| declare const HeadersPlugin: import("seroval").Plugin<Headers, { | ||
| value: SerovalNode; | ||
| }>; | ||
| //#endregion | ||
| //#region web/image-data.d.ts | ||
| type ImageDataNode = { | ||
| data: SerovalNode; | ||
| width: SerovalNode; | ||
| height: SerovalNode; | ||
| options: SerovalNode; | ||
| }; | ||
| declare const ImageDataPlugin: import("seroval").Plugin<ImageData, ImageDataNode>; | ||
| //#endregion | ||
| //#region web/readable-stream.d.ts | ||
| type ReadableStreamNode = { | ||
| factory: SerovalNode; | ||
| stream: SerovalNode; | ||
| }; | ||
| declare const ReadableStreamPlugin: import("seroval").Plugin<ReadableStream<any>, ReadableStreamNode>; | ||
| //#endregion | ||
| //#region web/request.d.ts | ||
| type RequestNode = { | ||
| url: SerovalNode; | ||
| options: SerovalNode; | ||
| }; | ||
| declare const RequestPlugin: import("seroval").Plugin<Request, RequestNode>; | ||
| //#endregion | ||
| //#region web/response.d.ts | ||
| type ResponseNode = { | ||
| body: SerovalNode; | ||
| options: SerovalNode; | ||
| }; | ||
| declare const ResponsePlugin: import("seroval").Plugin<Response, ResponseNode>; | ||
| //#endregion | ||
| //#region web/url.d.ts | ||
| declare const URLPlugin: import("seroval").Plugin<URL, { | ||
| value: SerovalNode; | ||
| }>; | ||
| //#endregion | ||
| //#region web/url-search-params.d.ts | ||
| declare const URLSearchParamsPlugin: import("seroval").Plugin<URLSearchParams, { | ||
| value: SerovalNode; | ||
| }>; | ||
| declare namespace index_d_exports { | ||
| export { AbortSignalPlugin, BlobPlugin, CustomEventPlugin, DOMExceptionPlugin, EventPlugin, FilePlugin, FormDataPlugin, HeadersPlugin, ImageDataPlugin, ReadableStreamPlugin, RequestPlugin, ResponsePlugin, URLPlugin, URLSearchParamsPlugin }; | ||
| } | ||
| //#endregion | ||
| export { RequestPlugin as a, HeadersPlugin as c, EventPlugin as d, DOMExceptionPlugin as f, AbortSignalPlugin as h, ResponsePlugin as i, FormDataPlugin as l, BlobPlugin as m, URLSearchParamsPlugin as n, ReadableStreamPlugin as o, CustomEventPlugin as p, URLPlugin as r, ImageDataPlugin as s, index_d_exports as t, FilePlugin as u }; |
@@ -1,2 +0,2 @@ | ||
| import { t as index_d_exports } from "./index-BD3WIX1W.cjs"; | ||
| import { t as index_d_exports } from "./index-BG4YWylA.cjs"; | ||
| export { index_d_exports as web }; |
@@ -1,2 +0,2 @@ | ||
| import { t as index_d_exports } from "./index-Col4D1Sf.js"; | ||
| import { t as index_d_exports } from "./index-BiDfEOvR.js"; | ||
| export { index_d_exports as web }; |
@@ -1,2 +0,2 @@ | ||
| import { a as RequestPlugin, c as HeadersPlugin, d as EventPlugin, f as DOMExceptionPlugin, h as AbortSignalPlugin, i as ResponsePlugin, l as FormDataPlugin, m as BlobPlugin, n as URLSearchParamsPlugin, o as ReadableStreamPlugin, p as CustomEventPlugin, r as URLPlugin, s as ImageDataPlugin, u as FilePlugin } from "./index-BD3WIX1W.cjs"; | ||
| import { a as RequestPlugin, c as HeadersPlugin, d as EventPlugin, f as DOMExceptionPlugin, h as AbortSignalPlugin, i as ResponsePlugin, l as FormDataPlugin, m as BlobPlugin, n as URLSearchParamsPlugin, o as ReadableStreamPlugin, p as CustomEventPlugin, r as URLPlugin, s as ImageDataPlugin, u as FilePlugin } from "./index-BG4YWylA.cjs"; | ||
| export { AbortSignalPlugin, BlobPlugin, CustomEventPlugin, DOMExceptionPlugin, EventPlugin, FilePlugin, FormDataPlugin, HeadersPlugin, ImageDataPlugin, ReadableStreamPlugin, RequestPlugin, ResponsePlugin, URLPlugin, URLSearchParamsPlugin }; |
@@ -1,2 +0,2 @@ | ||
| import { a as RequestPlugin, c as HeadersPlugin, d as EventPlugin, f as DOMExceptionPlugin, h as AbortSignalPlugin, i as ResponsePlugin, l as FormDataPlugin, m as BlobPlugin, n as URLSearchParamsPlugin, o as ReadableStreamPlugin, p as CustomEventPlugin, r as URLPlugin, s as ImageDataPlugin, u as FilePlugin } from "./index-Col4D1Sf.js"; | ||
| import { a as RequestPlugin, c as HeadersPlugin, d as EventPlugin, f as DOMExceptionPlugin, h as AbortSignalPlugin, i as ResponsePlugin, l as FormDataPlugin, m as BlobPlugin, n as URLSearchParamsPlugin, o as ReadableStreamPlugin, p as CustomEventPlugin, r as URLPlugin, s as ImageDataPlugin, u as FilePlugin } from "./index-BiDfEOvR.js"; | ||
| export { AbortSignalPlugin, BlobPlugin, CustomEventPlugin, DOMExceptionPlugin, EventPlugin, FilePlugin, FormDataPlugin, HeadersPlugin, ImageDataPlugin, ReadableStreamPlugin, RequestPlugin, ResponsePlugin, URLPlugin, URLSearchParamsPlugin }; |
+1
-1
@@ -1,2 +0,2 @@ | ||
| import { t as index_d_exports } from "./index-BD3WIX1W.cjs"; | ||
| import { t as index_d_exports } from "./index-BG4YWylA.cjs"; | ||
| export { index_d_exports as web }; |
+1
-1
@@ -1,2 +0,2 @@ | ||
| import { t as index_d_exports } from "./index-Col4D1Sf.js"; | ||
| import { t as index_d_exports } from "./index-BiDfEOvR.js"; | ||
| export { index_d_exports as web }; |
+1
-1
@@ -1,2 +0,2 @@ | ||
| import { a as RequestPlugin, c as HeadersPlugin, d as EventPlugin, f as DOMExceptionPlugin, h as AbortSignalPlugin, i as ResponsePlugin, l as FormDataPlugin, m as BlobPlugin, n as URLSearchParamsPlugin, o as ReadableStreamPlugin, p as CustomEventPlugin, r as URLPlugin, s as ImageDataPlugin, u as FilePlugin } from "./index-BD3WIX1W.cjs"; | ||
| import { a as RequestPlugin, c as HeadersPlugin, d as EventPlugin, f as DOMExceptionPlugin, h as AbortSignalPlugin, i as ResponsePlugin, l as FormDataPlugin, m as BlobPlugin, n as URLSearchParamsPlugin, o as ReadableStreamPlugin, p as CustomEventPlugin, r as URLPlugin, s as ImageDataPlugin, u as FilePlugin } from "./index-BG4YWylA.cjs"; | ||
| export { AbortSignalPlugin, BlobPlugin, CustomEventPlugin, DOMExceptionPlugin, EventPlugin, FilePlugin, FormDataPlugin, HeadersPlugin, ImageDataPlugin, ReadableStreamPlugin, RequestPlugin, ResponsePlugin, URLPlugin, URLSearchParamsPlugin }; |
+1
-1
@@ -1,2 +0,2 @@ | ||
| import { a as RequestPlugin, c as HeadersPlugin, d as EventPlugin, f as DOMExceptionPlugin, h as AbortSignalPlugin, i as ResponsePlugin, l as FormDataPlugin, m as BlobPlugin, n as URLSearchParamsPlugin, o as ReadableStreamPlugin, p as CustomEventPlugin, r as URLPlugin, s as ImageDataPlugin, u as FilePlugin } from "./index-Col4D1Sf.js"; | ||
| import { a as RequestPlugin, c as HeadersPlugin, d as EventPlugin, f as DOMExceptionPlugin, h as AbortSignalPlugin, i as ResponsePlugin, l as FormDataPlugin, m as BlobPlugin, n as URLSearchParamsPlugin, o as ReadableStreamPlugin, p as CustomEventPlugin, r as URLPlugin, s as ImageDataPlugin, u as FilePlugin } from "./index-BiDfEOvR.js"; | ||
| export { AbortSignalPlugin, BlobPlugin, CustomEventPlugin, DOMExceptionPlugin, EventPlugin, FilePlugin, FormDataPlugin, HeadersPlugin, ImageDataPlugin, ReadableStreamPlugin, RequestPlugin, ResponsePlugin, URLPlugin, URLSearchParamsPlugin }; |
+6
-6
| { | ||
| "name": "seroval-plugins", | ||
| "type": "module", | ||
| "version": "1.6.2", | ||
| "version": "1.6.3", | ||
| "files": [ | ||
@@ -16,10 +16,10 @@ "dist" | ||
| "devDependencies": { | ||
| "@types/node": "^24.10.0", | ||
| "@vitest/ui": "^4.0.6", | ||
| "esbuild": "^0.28.1", | ||
| "seroval": "1.6.2", | ||
| "@types/node": "^26.2.0", | ||
| "@vitest/ui": "^4.1.10", | ||
| "esbuild": "^0.28.2", | ||
| "seroval": "1.6.3", | ||
| "tsdown": "^0.22.14", | ||
| "tslib": "^2.8.1", | ||
| "typescript": "^7.0.2", | ||
| "vitest": "^4.0.6" | ||
| "vitest": "^4.1.10" | ||
| }, | ||
@@ -26,0 +26,0 @@ "peerDependencies": { |
| //#endregion | ||
| //#region web/abort-signal.d.ts | ||
| declare const AbortSignalPlugin: any; | ||
| //#endregion | ||
| //#region web/blob.d.ts | ||
| declare const BlobPlugin: any; | ||
| //#endregion | ||
| //#region web/custom-event.d.ts | ||
| declare const CustomEventPlugin: any; | ||
| //#endregion | ||
| //#region web/dom-exception.d.ts | ||
| declare const DOMExceptionPlugin: any; | ||
| //#endregion | ||
| //#region web/event.d.ts | ||
| declare const EventPlugin: any; | ||
| //#endregion | ||
| //#region web/file.d.ts | ||
| declare const FilePlugin: any; | ||
| //#endregion | ||
| //#region web/form-data.d.ts | ||
| declare const FormDataPlugin: any; | ||
| //#endregion | ||
| //#region web/headers.d.ts | ||
| declare const HeadersPlugin: any; | ||
| //#endregion | ||
| //#region web/image-data.d.ts | ||
| declare const ImageDataPlugin: any; | ||
| //#endregion | ||
| //#region web/readable-stream.d.ts | ||
| declare const ReadableStreamPlugin: any; | ||
| //#endregion | ||
| //#region web/request.d.ts | ||
| declare const RequestPlugin: any; | ||
| //#endregion | ||
| //#region web/response.d.ts | ||
| declare const ResponsePlugin: any; | ||
| //#endregion | ||
| //#region web/url.d.ts | ||
| declare const URLPlugin: any; | ||
| //#endregion | ||
| //#region web/url-search-params.d.ts | ||
| declare const URLSearchParamsPlugin: any; | ||
| declare namespace index_d_exports { | ||
| export { AbortSignalPlugin, BlobPlugin, CustomEventPlugin, DOMExceptionPlugin, EventPlugin, FilePlugin, FormDataPlugin, HeadersPlugin, ImageDataPlugin, ReadableStreamPlugin, RequestPlugin, ResponsePlugin, URLPlugin, URLSearchParamsPlugin }; | ||
| } | ||
| //#endregion | ||
| export { RequestPlugin as a, HeadersPlugin as c, EventPlugin as d, DOMExceptionPlugin as f, AbortSignalPlugin as h, ResponsePlugin as i, FormDataPlugin as l, BlobPlugin as m, URLSearchParamsPlugin as n, ReadableStreamPlugin as o, CustomEventPlugin as p, URLPlugin as r, ImageDataPlugin as s, index_d_exports as t, FilePlugin as u }; |
| //#region web/abort-signal.d.ts | ||
| declare const AbortSignalPlugin: any; | ||
| //#endregion | ||
| //#region web/blob.d.ts | ||
| declare const BlobPlugin: any; | ||
| //#endregion | ||
| //#region web/custom-event.d.ts | ||
| declare const CustomEventPlugin: any; | ||
| //#endregion | ||
| //#region web/dom-exception.d.ts | ||
| declare const DOMExceptionPlugin: any; | ||
| //#endregion | ||
| //#region web/event.d.ts | ||
| declare const EventPlugin: any; | ||
| //#endregion | ||
| //#region web/file.d.ts | ||
| declare const FilePlugin: any; | ||
| //#endregion | ||
| //#region web/form-data.d.ts | ||
| declare const FormDataPlugin: any; | ||
| //#endregion | ||
| //#region web/headers.d.ts | ||
| declare const HeadersPlugin: any; | ||
| //#endregion | ||
| //#region web/image-data.d.ts | ||
| declare const ImageDataPlugin: any; | ||
| //#endregion | ||
| //#region web/readable-stream.d.ts | ||
| declare const ReadableStreamPlugin: any; | ||
| //#endregion | ||
| //#region web/request.d.ts | ||
| declare const RequestPlugin: any; | ||
| //#endregion | ||
| //#region web/response.d.ts | ||
| declare const ResponsePlugin: any; | ||
| //#endregion | ||
| //#region web/url.d.ts | ||
| declare const URLPlugin: any; | ||
| //#endregion | ||
| //#region web/url-search-params.d.ts | ||
| declare const URLSearchParamsPlugin: any; | ||
| declare namespace index_d_exports { | ||
| export { AbortSignalPlugin, BlobPlugin, CustomEventPlugin, DOMExceptionPlugin, EventPlugin, FilePlugin, FormDataPlugin, HeadersPlugin, ImageDataPlugin, ReadableStreamPlugin, RequestPlugin, ResponsePlugin, URLPlugin, URLSearchParamsPlugin }; | ||
| } | ||
| //#endregion | ||
| export { RequestPlugin as a, HeadersPlugin as c, EventPlugin as d, DOMExceptionPlugin as f, AbortSignalPlugin as h, ResponsePlugin as i, FormDataPlugin as l, BlobPlugin as m, URLSearchParamsPlugin as n, ReadableStreamPlugin as o, CustomEventPlugin as p, URLPlugin as r, ImageDataPlugin as s, index_d_exports as t, FilePlugin as u }; |
| //#endregion | ||
| //#region web/abort-signal.d.ts | ||
| declare const AbortSignalPlugin: any; | ||
| //#endregion | ||
| //#region web/blob.d.ts | ||
| declare const BlobPlugin: any; | ||
| //#endregion | ||
| //#region web/custom-event.d.ts | ||
| declare const CustomEventPlugin: any; | ||
| //#endregion | ||
| //#region web/dom-exception.d.ts | ||
| declare const DOMExceptionPlugin: any; | ||
| //#endregion | ||
| //#region web/event.d.ts | ||
| declare const EventPlugin: any; | ||
| //#endregion | ||
| //#region web/file.d.ts | ||
| declare const FilePlugin: any; | ||
| //#endregion | ||
| //#region web/form-data.d.ts | ||
| declare const FormDataPlugin: any; | ||
| //#endregion | ||
| //#region web/headers.d.ts | ||
| declare const HeadersPlugin: any; | ||
| //#endregion | ||
| //#region web/image-data.d.ts | ||
| declare const ImageDataPlugin: any; | ||
| //#endregion | ||
| //#region web/readable-stream.d.ts | ||
| declare const ReadableStreamPlugin: any; | ||
| //#endregion | ||
| //#region web/request.d.ts | ||
| declare const RequestPlugin: any; | ||
| //#endregion | ||
| //#region web/response.d.ts | ||
| declare const ResponsePlugin: any; | ||
| //#endregion | ||
| //#region web/url.d.ts | ||
| declare const URLPlugin: any; | ||
| //#endregion | ||
| //#region web/url-search-params.d.ts | ||
| declare const URLSearchParamsPlugin: any; | ||
| declare namespace index_d_exports { | ||
| export { AbortSignalPlugin, BlobPlugin, CustomEventPlugin, DOMExceptionPlugin, EventPlugin, FilePlugin, FormDataPlugin, HeadersPlugin, ImageDataPlugin, ReadableStreamPlugin, RequestPlugin, ResponsePlugin, URLPlugin, URLSearchParamsPlugin }; | ||
| } | ||
| //#endregion | ||
| export { RequestPlugin as a, HeadersPlugin as c, EventPlugin as d, DOMExceptionPlugin as f, AbortSignalPlugin as h, ResponsePlugin as i, FormDataPlugin as l, BlobPlugin as m, URLSearchParamsPlugin as n, ReadableStreamPlugin as o, CustomEventPlugin as p, URLPlugin as r, ImageDataPlugin as s, index_d_exports as t, FilePlugin as u }; |
| //#region web/abort-signal.d.ts | ||
| declare const AbortSignalPlugin: any; | ||
| //#endregion | ||
| //#region web/blob.d.ts | ||
| declare const BlobPlugin: any; | ||
| //#endregion | ||
| //#region web/custom-event.d.ts | ||
| declare const CustomEventPlugin: any; | ||
| //#endregion | ||
| //#region web/dom-exception.d.ts | ||
| declare const DOMExceptionPlugin: any; | ||
| //#endregion | ||
| //#region web/event.d.ts | ||
| declare const EventPlugin: any; | ||
| //#endregion | ||
| //#region web/file.d.ts | ||
| declare const FilePlugin: any; | ||
| //#endregion | ||
| //#region web/form-data.d.ts | ||
| declare const FormDataPlugin: any; | ||
| //#endregion | ||
| //#region web/headers.d.ts | ||
| declare const HeadersPlugin: any; | ||
| //#endregion | ||
| //#region web/image-data.d.ts | ||
| declare const ImageDataPlugin: any; | ||
| //#endregion | ||
| //#region web/readable-stream.d.ts | ||
| declare const ReadableStreamPlugin: any; | ||
| //#endregion | ||
| //#region web/request.d.ts | ||
| declare const RequestPlugin: any; | ||
| //#endregion | ||
| //#region web/response.d.ts | ||
| declare const ResponsePlugin: any; | ||
| //#endregion | ||
| //#region web/url.d.ts | ||
| declare const URLPlugin: any; | ||
| //#endregion | ||
| //#region web/url-search-params.d.ts | ||
| declare const URLSearchParamsPlugin: any; | ||
| declare namespace index_d_exports { | ||
| export { AbortSignalPlugin, BlobPlugin, CustomEventPlugin, DOMExceptionPlugin, EventPlugin, FilePlugin, FormDataPlugin, HeadersPlugin, ImageDataPlugin, ReadableStreamPlugin, RequestPlugin, ResponsePlugin, URLPlugin, URLSearchParamsPlugin }; | ||
| } | ||
| //#endregion | ||
| export { RequestPlugin as a, HeadersPlugin as c, EventPlugin as d, DOMExceptionPlugin as f, AbortSignalPlugin as h, ResponsePlugin as i, FormDataPlugin as l, BlobPlugin as m, URLSearchParamsPlugin as n, ReadableStreamPlugin as o, CustomEventPlugin as p, URLPlugin as r, ImageDataPlugin as s, index_d_exports as t, FilePlugin as u }; |
100138
6.68%3090
3.62%