refactor: remove prefix from include_js_files & use extension name (#17683)

This commit is contained in:
Leo Kettmeir 2023-02-07 22:09:50 +01:00 committed by GitHub
parent b4aa153097
commit 49af1ab18d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
88 changed files with 271 additions and 308 deletions

View file

@ -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,