mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 02:48:24 +00:00
refactor: remove prefix from include_js_files & use extension name (#17683)
This commit is contained in:
parent
b4aa153097
commit
49af1ab18d
88 changed files with 271 additions and 308 deletions
8
ext/fetch/internal.d.ts
vendored
8
ext/fetch/internal.d.ts
vendored
|
@ -9,7 +9,7 @@ declare var domIterable: {
|
|||
DomIterableMixin(base: any, dataSymbol: symbol): any;
|
||||
};
|
||||
|
||||
declare module "internal:ext/fetch/20_headers.js" {
|
||||
declare module "internal:deno_fetch/20_headers.js" {
|
||||
class Headers {
|
||||
}
|
||||
type HeaderList = [string, string][];
|
||||
|
@ -33,7 +33,7 @@ declare module "internal:ext/fetch/20_headers.js" {
|
|||
): "immutable" | "request" | "request-no-cors" | "response" | "none";
|
||||
}
|
||||
|
||||
declare module "internal:ext/fetch/21_formdata.js" {
|
||||
declare module "internal:deno_fetch/21_formdata.js" {
|
||||
type FormData = typeof FormData;
|
||||
function formDataToBlob(
|
||||
formData: FormData,
|
||||
|
@ -45,7 +45,7 @@ declare module "internal:ext/fetch/21_formdata.js" {
|
|||
function formDataFromEntries(entries: FormDataEntry[]): FormData;
|
||||
}
|
||||
|
||||
declare module "internal:ext/fetch/22_body.js" {
|
||||
declare module "internal:deno_fetch/22_body.js" {
|
||||
function mixinBody(
|
||||
prototype: any,
|
||||
bodySymbol: symbol,
|
||||
|
@ -66,7 +66,7 @@ declare module "internal:ext/fetch/22_body.js" {
|
|||
};
|
||||
}
|
||||
|
||||
declare module "internal:ext/fetch/26_fetch.js" {
|
||||
declare module "internal:deno_fetch/26_fetch.js" {
|
||||
function toInnerRequest(request: Request): InnerRequest;
|
||||
function fromInnerRequest(
|
||||
inner: InnerRequest,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue