diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2023-02-07 22:09:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-07 21:09:50 +0000 |
commit | 49af1ab18da02f09e65506c873526c40d005c4ed (patch) | |
tree | 0d8f6028e98907096019500a7e1c717408eeb4e2 /ext/web/internal.d.ts | |
parent | b4aa1530970f7b9cc4e6f2f27e077852c4e178d3 (diff) |
refactor: remove prefix from include_js_files & use extension name (#17683)
Diffstat (limited to 'ext/web/internal.d.ts')
-rw-r--r-- | ext/web/internal.d.ts | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ext/web/internal.d.ts b/ext/web/internal.d.ts index fe0c8ac07..9f72b0f5d 100644 --- a/ext/web/internal.d.ts +++ b/ext/web/internal.d.ts @@ -3,7 +3,7 @@ /// <reference no-default-lib="true" /> /// <reference lib="esnext" /> -declare module "internal:ext/web/00_infra.js" { +declare module "internal:deno_web/00_infra.js" { function collectSequenceOfCodepoints( input: string, position: number, @@ -44,11 +44,11 @@ declare module "internal:ext/web/00_infra.js" { function serializeJSValueToJSONString(value: unknown): string; } -declare module "internal:ext/web/01_dom_exception.js" { +declare module "internal:deno_web/01_dom_exception.js" { export = DOMException; } -declare module "internal:ext/web/01_mimesniff.js" { +declare module "internal:deno_web/01_mimesniff.js" { interface MimeType { type: string; subtype: string; @@ -62,7 +62,7 @@ declare module "internal:ext/web/01_mimesniff.js" { ): MimeType | null; } -declare module "internal:ext/web/02_event.js" { +declare module "internal:deno_web/02_event.js" { const EventTarget: typeof EventTarget; const Event: typeof event; const ErrorEvent: typeof ErrorEvent; @@ -74,29 +74,29 @@ declare module "internal:ext/web/02_event.js" { const reportError: typeof reportError; } -declare module "internal:ext/web/12_location.js" { +declare module "internal:deno_web/12_location.js" { function getLocationHref(): string | undefined; } -declare module "internal:ext/web/05_base64.js" { +declare module "internal:deno_web/05_base64.js" { function atob(data: string): string; function btoa(data: string): string; } -declare module "internal:ext/web/09_file.js" { +declare module "internal:deno_web/09_file.js" { function blobFromObjectUrl(url: string): Blob | null; function getParts(blob: Blob): string[]; const Blob: typeof Blob; const File: typeof File; } -declare module "internal:ext/web/06_streams.js" { +declare module "internal:deno_web/06_streams.js" { const ReadableStream: typeof ReadableStream; function isReadableStreamDisturbed(stream: ReadableStream): boolean; function createProxy<T>(stream: ReadableStream<T>): ReadableStream<T>; } -declare module "internal:ext/web/13_message_port.js" { +declare module "internal:deno_web/13_message_port.js" { type Transferable = { kind: "messagePort"; data: number; |