typescript 6.0.0-dev.20251002 → 6.0.0-dev.20251003

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.
@@ -14,325 +14,5 @@ and limitations under the License.
14
14
  ***************************************************************************** */
15
15
 
16
16
 
17
- /////////////////////////////
18
- /// Worker Iterable APIs
19
- /////////////////////////////
20
-
21
- interface CSSNumericArray {
22
- [Symbol.iterator](): ArrayIterator<CSSNumericValue>;
23
- entries(): ArrayIterator<[number, CSSNumericValue]>;
24
- keys(): ArrayIterator<number>;
25
- values(): ArrayIterator<CSSNumericValue>;
26
- }
27
-
28
- interface CSSTransformValue {
29
- [Symbol.iterator](): ArrayIterator<CSSTransformComponent>;
30
- entries(): ArrayIterator<[number, CSSTransformComponent]>;
31
- keys(): ArrayIterator<number>;
32
- values(): ArrayIterator<CSSTransformComponent>;
33
- }
34
-
35
- interface CSSUnparsedValue {
36
- [Symbol.iterator](): ArrayIterator<CSSUnparsedSegment>;
37
- entries(): ArrayIterator<[number, CSSUnparsedSegment]>;
38
- keys(): ArrayIterator<number>;
39
- values(): ArrayIterator<CSSUnparsedSegment>;
40
- }
41
-
42
- interface Cache {
43
- /**
44
- * The **`addAll()`** method of the Cache interface takes an array of URLs, retrieves them, and adds the resulting response objects to the given cache.
45
- *
46
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/addAll)
47
- */
48
- addAll(requests: Iterable<RequestInfo>): Promise<void>;
49
- }
50
-
51
- interface CanvasPath {
52
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/roundRect) */
53
- roundRect(x: number, y: number, w: number, h: number, radii?: number | DOMPointInit | Iterable<number | DOMPointInit>): void;
54
- }
55
-
56
- interface CanvasPathDrawingStyles {
57
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/setLineDash) */
58
- setLineDash(segments: Iterable<number>): void;
59
- }
60
-
61
- interface CookieStoreManager {
62
- /**
63
- * The **`subscribe()`** method of the CookieStoreManager interface subscribes a ServiceWorkerRegistration to cookie change events.
64
- *
65
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/subscribe)
66
- */
67
- subscribe(subscriptions: Iterable<CookieStoreGetOptions>): Promise<void>;
68
- /**
69
- * The **`unsubscribe()`** method of the CookieStoreManager interface stops the ServiceWorkerRegistration from receiving previously subscribed events.
70
- *
71
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStoreManager/unsubscribe)
72
- */
73
- unsubscribe(subscriptions: Iterable<CookieStoreGetOptions>): Promise<void>;
74
- }
75
-
76
- interface DOMStringList {
77
- [Symbol.iterator](): ArrayIterator<string>;
78
- }
79
-
80
- interface FileList {
81
- [Symbol.iterator](): ArrayIterator<File>;
82
- }
83
-
84
- interface FontFaceSet extends Set<FontFace> {
85
- }
86
-
87
- interface FormDataIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {
88
- [Symbol.iterator](): FormDataIterator<T>;
89
- }
90
-
91
- interface FormData {
92
- [Symbol.iterator](): FormDataIterator<[string, FormDataEntryValue]>;
93
- /** Returns an array of key, value pairs for every entry in the list. */
94
- entries(): FormDataIterator<[string, FormDataEntryValue]>;
95
- /** Returns a list of keys in the list. */
96
- keys(): FormDataIterator<string>;
97
- /** Returns a list of values in the list. */
98
- values(): FormDataIterator<FormDataEntryValue>;
99
- }
100
-
101
- interface HeadersIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {
102
- [Symbol.iterator](): HeadersIterator<T>;
103
- }
104
-
105
- interface Headers {
106
- [Symbol.iterator](): HeadersIterator<[string, string]>;
107
- /** Returns an iterator allowing to go through all key/value pairs contained in this object. */
108
- entries(): HeadersIterator<[string, string]>;
109
- /** Returns an iterator allowing to go through all keys of the key/value pairs contained in this object. */
110
- keys(): HeadersIterator<string>;
111
- /** Returns an iterator allowing to go through all values of the key/value pairs contained in this object. */
112
- values(): HeadersIterator<string>;
113
- }
114
-
115
- interface IDBDatabase {
116
- /**
117
- * The **`transaction`** method of the IDBDatabase interface immediately returns a transaction object (IDBTransaction) containing the IDBTransaction.objectStore method, which you can use to access your object store.
118
- *
119
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/transaction)
120
- */
121
- transaction(storeNames: string | Iterable<string>, mode?: IDBTransactionMode, options?: IDBTransactionOptions): IDBTransaction;
122
- }
123
-
124
- interface IDBObjectStore {
125
- /**
126
- * The **`createIndex()`** method of the field/column defining a new data point for each database record to contain.
127
- *
128
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/createIndex)
129
- */
130
- createIndex(name: string, keyPath: string | Iterable<string>, options?: IDBIndexParameters): IDBIndex;
131
- }
132
-
133
- interface ImageTrackList {
134
- [Symbol.iterator](): ArrayIterator<ImageTrack>;
135
- }
136
-
137
- interface MessageEvent<T = any> {
138
- /** @deprecated */
139
- initMessageEvent(type: string, bubbles?: boolean, cancelable?: boolean, data?: any, origin?: string, lastEventId?: string, source?: MessageEventSource | null, ports?: Iterable<MessagePort>): void;
140
- }
141
-
142
- interface StylePropertyMapReadOnlyIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {
143
- [Symbol.iterator](): StylePropertyMapReadOnlyIterator<T>;
144
- }
145
-
146
- interface StylePropertyMapReadOnly {
147
- [Symbol.iterator](): StylePropertyMapReadOnlyIterator<[string, Iterable<CSSStyleValue>]>;
148
- entries(): StylePropertyMapReadOnlyIterator<[string, Iterable<CSSStyleValue>]>;
149
- keys(): StylePropertyMapReadOnlyIterator<string>;
150
- values(): StylePropertyMapReadOnlyIterator<Iterable<CSSStyleValue>>;
151
- }
152
-
153
- interface SubtleCrypto {
154
- /**
155
- * The **`deriveKey()`** method of the SubtleCrypto interface can be used to derive a secret key from a master key.
156
- *
157
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/deriveKey)
158
- */
159
- deriveKey(algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: AlgorithmIdentifier | AesDerivedKeyParams | HmacImportParams | HkdfParams | Pbkdf2Params, extractable: boolean, keyUsages: Iterable<KeyUsage>): Promise<CryptoKey>;
160
- /**
161
- * The **`generateKey()`** method of the SubtleCrypto interface is used to generate a new key (for symmetric algorithms) or key pair (for public-key algorithms).
162
- *
163
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/generateKey)
164
- */
165
- generateKey(algorithm: "Ed25519" | { name: "Ed25519" }, extractable: boolean, keyUsages: ReadonlyArray<"sign" | "verify">): Promise<CryptoKeyPair>;
166
- generateKey(algorithm: RsaHashedKeyGenParams | EcKeyGenParams, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKeyPair>;
167
- generateKey(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKey>;
168
- generateKey(algorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: Iterable<KeyUsage>): Promise<CryptoKeyPair | CryptoKey>;
169
- /**
170
- * The **`importKey()`** method of the SubtleCrypto interface imports a key: that is, it takes as input a key in an external, portable format and gives you a CryptoKey object that you can use in the Web Crypto API.
171
- *
172
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/importKey)
173
- */
174
- importKey(format: "jwk", keyData: JsonWebKey, algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKey>;
175
- importKey(format: Exclude<KeyFormat, "jwk">, keyData: BufferSource, algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, extractable: boolean, keyUsages: Iterable<KeyUsage>): Promise<CryptoKey>;
176
- /**
177
- * The **`unwrapKey()`** method of the SubtleCrypto interface 'unwraps' a key.
178
- *
179
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/unwrapKey)
180
- */
181
- unwrapKey(format: KeyFormat, wrappedKey: BufferSource, unwrappingKey: CryptoKey, unwrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, unwrappedKeyAlgorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, extractable: boolean, keyUsages: Iterable<KeyUsage>): Promise<CryptoKey>;
182
- }
183
-
184
- interface URLSearchParamsIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {
185
- [Symbol.iterator](): URLSearchParamsIterator<T>;
186
- }
187
-
188
- interface URLSearchParams {
189
- [Symbol.iterator](): URLSearchParamsIterator<[string, string]>;
190
- /** Returns an array of key, value pairs for every entry in the search params. */
191
- entries(): URLSearchParamsIterator<[string, string]>;
192
- /** Returns a list of keys in the search params. */
193
- keys(): URLSearchParamsIterator<string>;
194
- /** Returns a list of values in the search params. */
195
- values(): URLSearchParamsIterator<string>;
196
- }
197
-
198
- interface WEBGL_draw_buffers {
199
- /**
200
- * The **`WEBGL_draw_buffers.drawBuffersWEBGL()`** method is part of the WebGL API and allows you to define the draw buffers to which all fragment colors are written.
201
- *
202
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_draw_buffers/drawBuffersWEBGL)
203
- */
204
- drawBuffersWEBGL(buffers: Iterable<GLenum>): void;
205
- }
206
-
207
- interface WEBGL_multi_draw {
208
- /**
209
- * The **`WEBGL_multi_draw.multiDrawArraysInstancedWEBGL()`** method of the WebGL API renders multiple primitives from array data.
210
- *
211
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawArraysInstancedWEBGL)
212
- */
213
- multiDrawArraysInstancedWEBGL(mode: GLenum, firstsList: Int32Array<ArrayBufferLike> | Iterable<GLint>, firstsOffset: number, countsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, countsOffset: number, instanceCountsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, instanceCountsOffset: number, drawcount: GLsizei): void;
214
- /**
215
- * The **`WEBGL_multi_draw.multiDrawArraysWEBGL()`** method of the WebGL API renders multiple primitives from array data.
216
- *
217
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawArraysWEBGL)
218
- */
219
- multiDrawArraysWEBGL(mode: GLenum, firstsList: Int32Array<ArrayBufferLike> | Iterable<GLint>, firstsOffset: number, countsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, countsOffset: number, drawcount: GLsizei): void;
220
- /**
221
- * The **`WEBGL_multi_draw.multiDrawElementsInstancedWEBGL()`** method of the WebGL API renders multiple primitives from array data.
222
- *
223
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawElementsInstancedWEBGL)
224
- */
225
- multiDrawElementsInstancedWEBGL(mode: GLenum, countsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, countsOffset: number, type: GLenum, offsetsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, offsetsOffset: number, instanceCountsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, instanceCountsOffset: number, drawcount: GLsizei): void;
226
- /**
227
- * The **`WEBGL_multi_draw.multiDrawElementsWEBGL()`** method of the WebGL API renders multiple primitives from array data.
228
- *
229
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawElementsWEBGL)
230
- */
231
- multiDrawElementsWEBGL(mode: GLenum, countsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, countsOffset: number, type: GLenum, offsetsList: Int32Array<ArrayBufferLike> | Iterable<GLsizei>, offsetsOffset: number, drawcount: GLsizei): void;
232
- }
233
-
234
- interface WebGL2RenderingContextBase {
235
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */
236
- clearBufferfv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLfloat>, srcOffset?: number): void;
237
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */
238
- clearBufferiv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLint>, srcOffset?: number): void;
239
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clearBuffer) */
240
- clearBufferuiv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLuint>, srcOffset?: number): void;
241
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/drawBuffers) */
242
- drawBuffers(buffers: Iterable<GLenum>): void;
243
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getActiveUniforms) */
244
- getActiveUniforms(program: WebGLProgram, uniformIndices: Iterable<GLuint>, pname: GLenum): any;
245
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/getUniformIndices) */
246
- getUniformIndices(program: WebGLProgram, uniformNames: Iterable<string>): GLuint[] | null;
247
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/invalidateFramebuffer) */
248
- invalidateFramebuffer(target: GLenum, attachments: Iterable<GLenum>): void;
249
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/invalidateSubFramebuffer) */
250
- invalidateSubFramebuffer(target: GLenum, attachments: Iterable<GLenum>, x: GLint, y: GLint, width: GLsizei, height: GLsizei): void;
251
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/transformFeedbackVaryings) */
252
- transformFeedbackVaryings(program: WebGLProgram, varyings: Iterable<string>, bufferMode: GLenum): void;
253
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */
254
- uniform1uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: number, srcLength?: GLuint): void;
255
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */
256
- uniform2uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: number, srcLength?: GLuint): void;
257
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */
258
- uniform3uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: number, srcLength?: GLuint): void;
259
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniform) */
260
- uniform4uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: number, srcLength?: GLuint): void;
261
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */
262
- uniformMatrix2x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;
263
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */
264
- uniformMatrix2x4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;
265
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */
266
- uniformMatrix3x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;
267
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */
268
- uniformMatrix3x4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;
269
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */
270
- uniformMatrix4x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;
271
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */
272
- uniformMatrix4x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;
273
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/vertexAttribI) */
274
- vertexAttribI4iv(index: GLuint, values: Iterable<GLint>): void;
275
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/vertexAttribI) */
276
- vertexAttribI4uiv(index: GLuint, values: Iterable<GLuint>): void;
277
- }
278
-
279
- interface WebGL2RenderingContextOverloads {
280
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
281
- uniform1fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;
282
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
283
- uniform1iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: number, srcLength?: GLuint): void;
284
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
285
- uniform2fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;
286
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
287
- uniform2iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: number, srcLength?: GLuint): void;
288
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
289
- uniform3fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;
290
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
291
- uniform3iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: number, srcLength?: GLuint): void;
292
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
293
- uniform4fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;
294
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
295
- uniform4iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: number, srcLength?: GLuint): void;
296
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */
297
- uniformMatrix2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;
298
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */
299
- uniformMatrix3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;
300
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */
301
- uniformMatrix4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: number, srcLength?: GLuint): void;
302
- }
303
-
304
- interface WebGLRenderingContextBase {
305
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */
306
- vertexAttrib1fv(index: GLuint, values: Iterable<GLfloat>): void;
307
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */
308
- vertexAttrib2fv(index: GLuint, values: Iterable<GLfloat>): void;
309
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */
310
- vertexAttrib3fv(index: GLuint, values: Iterable<GLfloat>): void;
311
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/vertexAttrib) */
312
- vertexAttrib4fv(index: GLuint, values: Iterable<GLfloat>): void;
313
- }
314
-
315
- interface WebGLRenderingContextOverloads {
316
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
317
- uniform1fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;
318
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
319
- uniform1iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;
320
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
321
- uniform2fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;
322
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
323
- uniform2iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;
324
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
325
- uniform3fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;
326
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
327
- uniform3iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;
328
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
329
- uniform4fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;
330
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
331
- uniform4iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;
332
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */
333
- uniformMatrix2fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Iterable<GLfloat>): void;
334
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */
335
- uniformMatrix3fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Iterable<GLfloat>): void;
336
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */
337
- uniformMatrix4fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Iterable<GLfloat>): void;
338
- }
17
+ // This file's contents are now included in the main types file.
18
+ // The file has been left for backward compatibility.
package/lib/typescript.js CHANGED
@@ -2286,7 +2286,7 @@ module.exports = __toCommonJS(typescript_exports);
2286
2286
 
2287
2287
  // src/compiler/corePublic.ts
2288
2288
  var versionMajorMinor = "6.0";
2289
- var version = `${versionMajorMinor}.0-dev.20251002`;
2289
+ var version = `${versionMajorMinor}.0-dev.20251003`;
2290
2290
  var Comparison = /* @__PURE__ */ ((Comparison3) => {
2291
2291
  Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
2292
2292
  Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "typescript",
3
3
  "author": "Microsoft Corp.",
4
4
  "homepage": "https://www.typescriptlang.org/",
5
- "version": "6.0.0-dev.20251002",
5
+ "version": "6.0.0-dev.20251003",
6
6
  "license": "Apache-2.0",
7
7
  "description": "TypeScript is a language for application scale JavaScript development",
8
8
  "keywords": [
@@ -115,5 +115,5 @@
115
115
  "node": "20.1.0",
116
116
  "npm": "8.19.4"
117
117
  },
118
- "gitHead": "837e3a1df996b505e1d376fa46166740b7ed5450"
118
+ "gitHead": "ced90d94b5873a642cb1c64eb62ef06660a489fd"
119
119
  }