@types/web 0.0.245 → 0.0.246
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.
- package/README.md +1 -1
- package/index.d.ts +109 -0
- package/package.json +1 -1
- package/ts5.5/index.d.ts +109 -0
- package/ts5.6/index.d.ts +109 -0
package/README.md
CHANGED
|
@@ -47,4 +47,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
|
|
|
47
47
|
|
|
48
48
|
## Deploy Metadata
|
|
49
49
|
|
|
50
|
-
You can read what changed in version 0.0.
|
|
50
|
+
You can read what changed in version 0.0.246 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.246.
|
package/index.d.ts
CHANGED
|
@@ -2295,6 +2295,39 @@ interface ULongRange {
|
|
|
2295
2295
|
min?: number;
|
|
2296
2296
|
}
|
|
2297
2297
|
|
|
2298
|
+
interface URLPatternComponentResult {
|
|
2299
|
+
groups?: Record<string, string | undefined>;
|
|
2300
|
+
input?: string;
|
|
2301
|
+
}
|
|
2302
|
+
|
|
2303
|
+
interface URLPatternInit {
|
|
2304
|
+
baseURL?: string;
|
|
2305
|
+
hash?: string;
|
|
2306
|
+
hostname?: string;
|
|
2307
|
+
password?: string;
|
|
2308
|
+
pathname?: string;
|
|
2309
|
+
port?: string;
|
|
2310
|
+
protocol?: string;
|
|
2311
|
+
search?: string;
|
|
2312
|
+
username?: string;
|
|
2313
|
+
}
|
|
2314
|
+
|
|
2315
|
+
interface URLPatternOptions {
|
|
2316
|
+
ignoreCase?: boolean;
|
|
2317
|
+
}
|
|
2318
|
+
|
|
2319
|
+
interface URLPatternResult {
|
|
2320
|
+
hash?: URLPatternComponentResult;
|
|
2321
|
+
hostname?: URLPatternComponentResult;
|
|
2322
|
+
inputs?: URLPatternInput[];
|
|
2323
|
+
password?: URLPatternComponentResult;
|
|
2324
|
+
pathname?: URLPatternComponentResult;
|
|
2325
|
+
port?: URLPatternComponentResult;
|
|
2326
|
+
protocol?: URLPatternComponentResult;
|
|
2327
|
+
search?: URLPatternComponentResult;
|
|
2328
|
+
username?: URLPatternComponentResult;
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2298
2331
|
interface UnderlyingByteSource {
|
|
2299
2332
|
autoAllocateChunkSize?: number;
|
|
2300
2333
|
cancel?: UnderlyingSourceCancelCallback;
|
|
@@ -32997,6 +33030,81 @@ declare var URL: {
|
|
|
32997
33030
|
type webkitURL = URL;
|
|
32998
33031
|
declare var webkitURL: typeof URL;
|
|
32999
33032
|
|
|
33033
|
+
/**
|
|
33034
|
+
* The **`URLPattern`** interface of the URL Pattern API matches URLs or parts of URLs against a pattern.
|
|
33035
|
+
*
|
|
33036
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern)
|
|
33037
|
+
*/
|
|
33038
|
+
interface URLPattern {
|
|
33039
|
+
readonly hasRegExpGroups: boolean;
|
|
33040
|
+
/**
|
|
33041
|
+
* The **`hash`** read-only property of the URLPattern interface is a string containing the pattern used to match the fragment part of a URL.
|
|
33042
|
+
*
|
|
33043
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/hash)
|
|
33044
|
+
*/
|
|
33045
|
+
readonly hash: string;
|
|
33046
|
+
/**
|
|
33047
|
+
* The **`hostname`** read-only property of the URLPattern interface is a string containing the pattern used to match the hostname part of a URL.
|
|
33048
|
+
*
|
|
33049
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/hostname)
|
|
33050
|
+
*/
|
|
33051
|
+
readonly hostname: string;
|
|
33052
|
+
/**
|
|
33053
|
+
* The **`password`** read-only property of the URLPattern interface is a string containing the pattern used to match the password part of a URL.
|
|
33054
|
+
*
|
|
33055
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/password)
|
|
33056
|
+
*/
|
|
33057
|
+
readonly password: string;
|
|
33058
|
+
/**
|
|
33059
|
+
* The **`pathname`** read-only property of the URLPattern interface is a string containing the pattern used to match the pathname part of a URL.
|
|
33060
|
+
*
|
|
33061
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/pathname)
|
|
33062
|
+
*/
|
|
33063
|
+
readonly pathname: string;
|
|
33064
|
+
/**
|
|
33065
|
+
* The **`port`** read-only property of the URLPattern interface is a string containing the pattern used to match the port part of a URL.
|
|
33066
|
+
*
|
|
33067
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/port)
|
|
33068
|
+
*/
|
|
33069
|
+
readonly port: string;
|
|
33070
|
+
/**
|
|
33071
|
+
* The **`protocol`** read-only property of the URLPattern interface is a string containing the pattern used to match the protocol part of a URL.
|
|
33072
|
+
*
|
|
33073
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/protocol)
|
|
33074
|
+
*/
|
|
33075
|
+
readonly protocol: string;
|
|
33076
|
+
/**
|
|
33077
|
+
* The **`search`** read-only property of the URLPattern interface is a string containing the pattern used to match the search part of a URL.
|
|
33078
|
+
*
|
|
33079
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/search)
|
|
33080
|
+
*/
|
|
33081
|
+
readonly search: string;
|
|
33082
|
+
/**
|
|
33083
|
+
* The **`username`** read-only property of the URLPattern interface is a string containing the pattern used to match the username part of a URL.
|
|
33084
|
+
*
|
|
33085
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/username)
|
|
33086
|
+
*/
|
|
33087
|
+
readonly username: string;
|
|
33088
|
+
/**
|
|
33089
|
+
* The **`exec()`** method of the URLPattern interface takes a URL or object of URL parts, and returns either an object containing the results of matching the URL to the pattern, or `null` if the URL does not match the pattern.
|
|
33090
|
+
*
|
|
33091
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/exec)
|
|
33092
|
+
*/
|
|
33093
|
+
exec(input?: URLPatternInput, baseURL?: string | URL): URLPatternResult | null;
|
|
33094
|
+
/**
|
|
33095
|
+
* The **`test()`** method of the URLPattern interface takes a URL or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
|
|
33096
|
+
*
|
|
33097
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/test)
|
|
33098
|
+
*/
|
|
33099
|
+
test(input?: URLPatternInput, baseURL?: string | URL): boolean;
|
|
33100
|
+
}
|
|
33101
|
+
|
|
33102
|
+
declare var URLPattern: {
|
|
33103
|
+
prototype: URLPattern;
|
|
33104
|
+
new(input: URLPatternInput, baseURL: string | URL, options?: URLPatternOptions): URLPattern;
|
|
33105
|
+
new(input?: URLPatternInput, options?: URLPatternOptions): URLPattern;
|
|
33106
|
+
};
|
|
33107
|
+
|
|
33000
33108
|
/**
|
|
33001
33109
|
* The **`URLSearchParams`** interface defines utility methods to work with the query string of a URL.
|
|
33002
33110
|
*
|
|
@@ -39475,6 +39583,7 @@ type RequestInfo = Request | string;
|
|
|
39475
39583
|
type TexImageSource = ImageBitmap | ImageData | HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | OffscreenCanvas | VideoFrame;
|
|
39476
39584
|
type TimerHandler = string | Function;
|
|
39477
39585
|
type Transferable = OffscreenCanvas | ImageBitmap | MessagePort | MediaSourceHandle | ReadableStream | WritableStream | TransformStream | AudioData | VideoFrame | RTCDataChannel | ArrayBuffer;
|
|
39586
|
+
type URLPatternInput = string | URLPatternInit;
|
|
39478
39587
|
type Uint32List = Uint32Array<ArrayBufferLike> | GLuint[];
|
|
39479
39588
|
type VibratePattern = number | number[];
|
|
39480
39589
|
type WindowProxy = Window;
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -2295,6 +2295,39 @@ interface ULongRange {
|
|
|
2295
2295
|
min?: number;
|
|
2296
2296
|
}
|
|
2297
2297
|
|
|
2298
|
+
interface URLPatternComponentResult {
|
|
2299
|
+
groups?: Record<string, string | undefined>;
|
|
2300
|
+
input?: string;
|
|
2301
|
+
}
|
|
2302
|
+
|
|
2303
|
+
interface URLPatternInit {
|
|
2304
|
+
baseURL?: string;
|
|
2305
|
+
hash?: string;
|
|
2306
|
+
hostname?: string;
|
|
2307
|
+
password?: string;
|
|
2308
|
+
pathname?: string;
|
|
2309
|
+
port?: string;
|
|
2310
|
+
protocol?: string;
|
|
2311
|
+
search?: string;
|
|
2312
|
+
username?: string;
|
|
2313
|
+
}
|
|
2314
|
+
|
|
2315
|
+
interface URLPatternOptions {
|
|
2316
|
+
ignoreCase?: boolean;
|
|
2317
|
+
}
|
|
2318
|
+
|
|
2319
|
+
interface URLPatternResult {
|
|
2320
|
+
hash?: URLPatternComponentResult;
|
|
2321
|
+
hostname?: URLPatternComponentResult;
|
|
2322
|
+
inputs?: URLPatternInput[];
|
|
2323
|
+
password?: URLPatternComponentResult;
|
|
2324
|
+
pathname?: URLPatternComponentResult;
|
|
2325
|
+
port?: URLPatternComponentResult;
|
|
2326
|
+
protocol?: URLPatternComponentResult;
|
|
2327
|
+
search?: URLPatternComponentResult;
|
|
2328
|
+
username?: URLPatternComponentResult;
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2298
2331
|
interface UnderlyingByteSource {
|
|
2299
2332
|
autoAllocateChunkSize?: number;
|
|
2300
2333
|
cancel?: UnderlyingSourceCancelCallback;
|
|
@@ -32974,6 +33007,81 @@ declare var URL: {
|
|
|
32974
33007
|
type webkitURL = URL;
|
|
32975
33008
|
declare var webkitURL: typeof URL;
|
|
32976
33009
|
|
|
33010
|
+
/**
|
|
33011
|
+
* The **`URLPattern`** interface of the URL Pattern API matches URLs or parts of URLs against a pattern.
|
|
33012
|
+
*
|
|
33013
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern)
|
|
33014
|
+
*/
|
|
33015
|
+
interface URLPattern {
|
|
33016
|
+
readonly hasRegExpGroups: boolean;
|
|
33017
|
+
/**
|
|
33018
|
+
* The **`hash`** read-only property of the URLPattern interface is a string containing the pattern used to match the fragment part of a URL.
|
|
33019
|
+
*
|
|
33020
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/hash)
|
|
33021
|
+
*/
|
|
33022
|
+
readonly hash: string;
|
|
33023
|
+
/**
|
|
33024
|
+
* The **`hostname`** read-only property of the URLPattern interface is a string containing the pattern used to match the hostname part of a URL.
|
|
33025
|
+
*
|
|
33026
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/hostname)
|
|
33027
|
+
*/
|
|
33028
|
+
readonly hostname: string;
|
|
33029
|
+
/**
|
|
33030
|
+
* The **`password`** read-only property of the URLPattern interface is a string containing the pattern used to match the password part of a URL.
|
|
33031
|
+
*
|
|
33032
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/password)
|
|
33033
|
+
*/
|
|
33034
|
+
readonly password: string;
|
|
33035
|
+
/**
|
|
33036
|
+
* The **`pathname`** read-only property of the URLPattern interface is a string containing the pattern used to match the pathname part of a URL.
|
|
33037
|
+
*
|
|
33038
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/pathname)
|
|
33039
|
+
*/
|
|
33040
|
+
readonly pathname: string;
|
|
33041
|
+
/**
|
|
33042
|
+
* The **`port`** read-only property of the URLPattern interface is a string containing the pattern used to match the port part of a URL.
|
|
33043
|
+
*
|
|
33044
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/port)
|
|
33045
|
+
*/
|
|
33046
|
+
readonly port: string;
|
|
33047
|
+
/**
|
|
33048
|
+
* The **`protocol`** read-only property of the URLPattern interface is a string containing the pattern used to match the protocol part of a URL.
|
|
33049
|
+
*
|
|
33050
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/protocol)
|
|
33051
|
+
*/
|
|
33052
|
+
readonly protocol: string;
|
|
33053
|
+
/**
|
|
33054
|
+
* The **`search`** read-only property of the URLPattern interface is a string containing the pattern used to match the search part of a URL.
|
|
33055
|
+
*
|
|
33056
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/search)
|
|
33057
|
+
*/
|
|
33058
|
+
readonly search: string;
|
|
33059
|
+
/**
|
|
33060
|
+
* The **`username`** read-only property of the URLPattern interface is a string containing the pattern used to match the username part of a URL.
|
|
33061
|
+
*
|
|
33062
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/username)
|
|
33063
|
+
*/
|
|
33064
|
+
readonly username: string;
|
|
33065
|
+
/**
|
|
33066
|
+
* The **`exec()`** method of the URLPattern interface takes a URL or object of URL parts, and returns either an object containing the results of matching the URL to the pattern, or `null` if the URL does not match the pattern.
|
|
33067
|
+
*
|
|
33068
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/exec)
|
|
33069
|
+
*/
|
|
33070
|
+
exec(input?: URLPatternInput, baseURL?: string | URL): URLPatternResult | null;
|
|
33071
|
+
/**
|
|
33072
|
+
* The **`test()`** method of the URLPattern interface takes a URL or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
|
|
33073
|
+
*
|
|
33074
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/test)
|
|
33075
|
+
*/
|
|
33076
|
+
test(input?: URLPatternInput, baseURL?: string | URL): boolean;
|
|
33077
|
+
}
|
|
33078
|
+
|
|
33079
|
+
declare var URLPattern: {
|
|
33080
|
+
prototype: URLPattern;
|
|
33081
|
+
new(input: URLPatternInput, baseURL: string | URL, options?: URLPatternOptions): URLPattern;
|
|
33082
|
+
new(input?: URLPatternInput, options?: URLPatternOptions): URLPattern;
|
|
33083
|
+
};
|
|
33084
|
+
|
|
32977
33085
|
/**
|
|
32978
33086
|
* The **`URLSearchParams`** interface defines utility methods to work with the query string of a URL.
|
|
32979
33087
|
*
|
|
@@ -39452,6 +39560,7 @@ type RequestInfo = Request | string;
|
|
|
39452
39560
|
type TexImageSource = ImageBitmap | ImageData | HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | OffscreenCanvas | VideoFrame;
|
|
39453
39561
|
type TimerHandler = string | Function;
|
|
39454
39562
|
type Transferable = OffscreenCanvas | ImageBitmap | MessagePort | MediaSourceHandle | ReadableStream | WritableStream | TransformStream | AudioData | VideoFrame | RTCDataChannel | ArrayBuffer;
|
|
39563
|
+
type URLPatternInput = string | URLPatternInit;
|
|
39455
39564
|
type Uint32List = Uint32Array | GLuint[];
|
|
39456
39565
|
type VibratePattern = number | number[];
|
|
39457
39566
|
type WindowProxy = Window;
|
package/ts5.6/index.d.ts
CHANGED
|
@@ -2295,6 +2295,39 @@ interface ULongRange {
|
|
|
2295
2295
|
min?: number;
|
|
2296
2296
|
}
|
|
2297
2297
|
|
|
2298
|
+
interface URLPatternComponentResult {
|
|
2299
|
+
groups?: Record<string, string | undefined>;
|
|
2300
|
+
input?: string;
|
|
2301
|
+
}
|
|
2302
|
+
|
|
2303
|
+
interface URLPatternInit {
|
|
2304
|
+
baseURL?: string;
|
|
2305
|
+
hash?: string;
|
|
2306
|
+
hostname?: string;
|
|
2307
|
+
password?: string;
|
|
2308
|
+
pathname?: string;
|
|
2309
|
+
port?: string;
|
|
2310
|
+
protocol?: string;
|
|
2311
|
+
search?: string;
|
|
2312
|
+
username?: string;
|
|
2313
|
+
}
|
|
2314
|
+
|
|
2315
|
+
interface URLPatternOptions {
|
|
2316
|
+
ignoreCase?: boolean;
|
|
2317
|
+
}
|
|
2318
|
+
|
|
2319
|
+
interface URLPatternResult {
|
|
2320
|
+
hash?: URLPatternComponentResult;
|
|
2321
|
+
hostname?: URLPatternComponentResult;
|
|
2322
|
+
inputs?: URLPatternInput[];
|
|
2323
|
+
password?: URLPatternComponentResult;
|
|
2324
|
+
pathname?: URLPatternComponentResult;
|
|
2325
|
+
port?: URLPatternComponentResult;
|
|
2326
|
+
protocol?: URLPatternComponentResult;
|
|
2327
|
+
search?: URLPatternComponentResult;
|
|
2328
|
+
username?: URLPatternComponentResult;
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2298
2331
|
interface UnderlyingByteSource {
|
|
2299
2332
|
autoAllocateChunkSize?: number;
|
|
2300
2333
|
cancel?: UnderlyingSourceCancelCallback;
|
|
@@ -32997,6 +33030,81 @@ declare var URL: {
|
|
|
32997
33030
|
type webkitURL = URL;
|
|
32998
33031
|
declare var webkitURL: typeof URL;
|
|
32999
33032
|
|
|
33033
|
+
/**
|
|
33034
|
+
* The **`URLPattern`** interface of the URL Pattern API matches URLs or parts of URLs against a pattern.
|
|
33035
|
+
*
|
|
33036
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern)
|
|
33037
|
+
*/
|
|
33038
|
+
interface URLPattern {
|
|
33039
|
+
readonly hasRegExpGroups: boolean;
|
|
33040
|
+
/**
|
|
33041
|
+
* The **`hash`** read-only property of the URLPattern interface is a string containing the pattern used to match the fragment part of a URL.
|
|
33042
|
+
*
|
|
33043
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/hash)
|
|
33044
|
+
*/
|
|
33045
|
+
readonly hash: string;
|
|
33046
|
+
/**
|
|
33047
|
+
* The **`hostname`** read-only property of the URLPattern interface is a string containing the pattern used to match the hostname part of a URL.
|
|
33048
|
+
*
|
|
33049
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/hostname)
|
|
33050
|
+
*/
|
|
33051
|
+
readonly hostname: string;
|
|
33052
|
+
/**
|
|
33053
|
+
* The **`password`** read-only property of the URLPattern interface is a string containing the pattern used to match the password part of a URL.
|
|
33054
|
+
*
|
|
33055
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/password)
|
|
33056
|
+
*/
|
|
33057
|
+
readonly password: string;
|
|
33058
|
+
/**
|
|
33059
|
+
* The **`pathname`** read-only property of the URLPattern interface is a string containing the pattern used to match the pathname part of a URL.
|
|
33060
|
+
*
|
|
33061
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/pathname)
|
|
33062
|
+
*/
|
|
33063
|
+
readonly pathname: string;
|
|
33064
|
+
/**
|
|
33065
|
+
* The **`port`** read-only property of the URLPattern interface is a string containing the pattern used to match the port part of a URL.
|
|
33066
|
+
*
|
|
33067
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/port)
|
|
33068
|
+
*/
|
|
33069
|
+
readonly port: string;
|
|
33070
|
+
/**
|
|
33071
|
+
* The **`protocol`** read-only property of the URLPattern interface is a string containing the pattern used to match the protocol part of a URL.
|
|
33072
|
+
*
|
|
33073
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/protocol)
|
|
33074
|
+
*/
|
|
33075
|
+
readonly protocol: string;
|
|
33076
|
+
/**
|
|
33077
|
+
* The **`search`** read-only property of the URLPattern interface is a string containing the pattern used to match the search part of a URL.
|
|
33078
|
+
*
|
|
33079
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/search)
|
|
33080
|
+
*/
|
|
33081
|
+
readonly search: string;
|
|
33082
|
+
/**
|
|
33083
|
+
* The **`username`** read-only property of the URLPattern interface is a string containing the pattern used to match the username part of a URL.
|
|
33084
|
+
*
|
|
33085
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/username)
|
|
33086
|
+
*/
|
|
33087
|
+
readonly username: string;
|
|
33088
|
+
/**
|
|
33089
|
+
* The **`exec()`** method of the URLPattern interface takes a URL or object of URL parts, and returns either an object containing the results of matching the URL to the pattern, or `null` if the URL does not match the pattern.
|
|
33090
|
+
*
|
|
33091
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/exec)
|
|
33092
|
+
*/
|
|
33093
|
+
exec(input?: URLPatternInput, baseURL?: string | URL): URLPatternResult | null;
|
|
33094
|
+
/**
|
|
33095
|
+
* The **`test()`** method of the URLPattern interface takes a URL or object of URL parts, and returns a boolean indicating if the given input matches the current pattern.
|
|
33096
|
+
*
|
|
33097
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLPattern/test)
|
|
33098
|
+
*/
|
|
33099
|
+
test(input?: URLPatternInput, baseURL?: string | URL): boolean;
|
|
33100
|
+
}
|
|
33101
|
+
|
|
33102
|
+
declare var URLPattern: {
|
|
33103
|
+
prototype: URLPattern;
|
|
33104
|
+
new(input: URLPatternInput, baseURL: string | URL, options?: URLPatternOptions): URLPattern;
|
|
33105
|
+
new(input?: URLPatternInput, options?: URLPatternOptions): URLPattern;
|
|
33106
|
+
};
|
|
33107
|
+
|
|
33000
33108
|
/**
|
|
33001
33109
|
* The **`URLSearchParams`** interface defines utility methods to work with the query string of a URL.
|
|
33002
33110
|
*
|
|
@@ -39475,6 +39583,7 @@ type RequestInfo = Request | string;
|
|
|
39475
39583
|
type TexImageSource = ImageBitmap | ImageData | HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | OffscreenCanvas | VideoFrame;
|
|
39476
39584
|
type TimerHandler = string | Function;
|
|
39477
39585
|
type Transferable = OffscreenCanvas | ImageBitmap | MessagePort | MediaSourceHandle | ReadableStream | WritableStream | TransformStream | AudioData | VideoFrame | RTCDataChannel | ArrayBuffer;
|
|
39586
|
+
type URLPatternInput = string | URLPatternInit;
|
|
39478
39587
|
type Uint32List = Uint32Array | GLuint[];
|
|
39479
39588
|
type VibratePattern = number | number[];
|
|
39480
39589
|
type WindowProxy = Window;
|