@types/serviceworker 0.0.129 → 0.0.130

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/index.d.ts CHANGED
@@ -789,7 +789,7 @@ interface WriteParams {
789
789
  }
790
790
 
791
791
  /**
792
- * The ANGLE_instanced_arrays extension is part of the WebGL API and allows to draw the same object, or groups of similar objects multiple times, if they share the same vertex data, primitive count and type.
792
+ * The **`ANGLE_instanced_arrays`** extension is part of the WebGL API and allows to draw the same object, or groups of similar objects multiple times, if they share the same vertex data, primitive count and type.
793
793
  *
794
794
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ANGLE_instanced_arrays)
795
795
  */
@@ -804,7 +804,7 @@ interface ANGLE_instanced_arrays {
804
804
  }
805
805
 
806
806
  /**
807
- * A controller object that allows you to abort one or more DOM requests as and when desired.
807
+ * The **`AbortController`** interface represents a controller object that allows you to abort one or more Web requests as and when desired.
808
808
  *
809
809
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortController)
810
810
  */
@@ -833,7 +833,7 @@ interface AbortSignalEventMap {
833
833
  }
834
834
 
835
835
  /**
836
- * A signal object that allows you to communicate with a DOM request (such as a Fetch) and abort it if required via an AbortController object.
836
+ * The **`AbortSignal`** interface represents a signal object that allows you to communicate with an asynchronous operation (such as a fetch request) and abort it if required via an AbortController object.
837
837
  *
838
838
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal)
839
839
  */
@@ -881,7 +881,7 @@ interface AbstractWorker {
881
881
  }
882
882
 
883
883
  /**
884
- * A file-like object of immutable, raw data. Blobs represent data that isn't necessarily in a JavaScript-native format. The File interface is based on Blob, inheriting blob functionality and expanding it to support files on the user's system.
884
+ * The **`Blob`** interface represents a blob, which is a file-like object of immutable, raw data; they can be read as text or binary data, or converted into a ReadableStream so its methods can be used for processing the data.
885
885
  *
886
886
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob)
887
887
  */
@@ -931,7 +931,11 @@ interface BroadcastChannelEventMap {
931
931
  "messageerror": MessageEvent;
932
932
  }
933
933
 
934
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/BroadcastChannel) */
934
+ /**
935
+ * The **`BroadcastChannel`** interface represents a named channel that any browsing context of a given origin can subscribe to.
936
+ *
937
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BroadcastChannel)
938
+ */
935
939
  interface BroadcastChannel extends EventTarget {
936
940
  /**
937
941
  * Returns the channel name (as passed to the constructor).
@@ -967,7 +971,7 @@ declare var BroadcastChannel: {
967
971
  };
968
972
 
969
973
  /**
970
- * This Streams API interface provides a built-in byte length queuing strategy that can be used when constructing streams.
974
+ * The **`ByteLengthQueuingStrategy`** interface of the Streams API provides a built-in byte length queuing strategy that can be used when constructing streams.
971
975
  *
972
976
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ByteLengthQueuingStrategy)
973
977
  */
@@ -983,7 +987,11 @@ declare var ByteLengthQueuingStrategy: {
983
987
  new(init: QueuingStrategyInit): ByteLengthQueuingStrategy;
984
988
  };
985
989
 
986
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImageValue) */
990
+ /**
991
+ * The **`CSSImageValue`** interface of the CSS Typed Object Model API represents values for properties that take an image, for example background-image, list-style-image, or border-image-source.
992
+ *
993
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImageValue)
994
+ */
987
995
  interface CSSImageValue extends CSSStyleValue {
988
996
  }
989
997
 
@@ -992,7 +1000,11 @@ declare var CSSImageValue: {
992
1000
  new(): CSSImageValue;
993
1001
  };
994
1002
 
995
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeywordValue) */
1003
+ /**
1004
+ * The **`CSSKeywordValue`** interface of the CSS Typed Object Model API creates an object to represent CSS keywords and other identifiers.
1005
+ *
1006
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeywordValue)
1007
+ */
996
1008
  interface CSSKeywordValue extends CSSStyleValue {
997
1009
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeywordValue/value) */
998
1010
  value: string;
@@ -1014,7 +1026,11 @@ declare var CSSMathClamp: {
1014
1026
  new(lower: CSSNumberish, value: CSSNumberish, upper: CSSNumberish): CSSMathClamp;
1015
1027
  };
1016
1028
 
1017
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert) */
1029
+ /**
1030
+ * The **`CSSMathInvert`** interface of the CSS Typed Object Model API represents a CSS calc used as `calc(1 / <value>).` It inherits properties and methods from its parent CSSNumericValue.
1031
+ *
1032
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert)
1033
+ */
1018
1034
  interface CSSMathInvert extends CSSMathValue {
1019
1035
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert/value) */
1020
1036
  readonly value: CSSNumericValue;
@@ -1025,7 +1041,11 @@ declare var CSSMathInvert: {
1025
1041
  new(arg: CSSNumberish): CSSMathInvert;
1026
1042
  };
1027
1043
 
1028
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMax) */
1044
+ /**
1045
+ * The **`CSSMathMax`** interface of the CSS Typed Object Model API represents the CSS max function.
1046
+ *
1047
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMax)
1048
+ */
1029
1049
  interface CSSMathMax extends CSSMathValue {
1030
1050
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMax/values) */
1031
1051
  readonly values: CSSNumericArray;
@@ -1036,7 +1056,11 @@ declare var CSSMathMax: {
1036
1056
  new(...args: CSSNumberish[]): CSSMathMax;
1037
1057
  };
1038
1058
 
1039
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMin) */
1059
+ /**
1060
+ * The **`CSSMathMin`** interface of the CSS Typed Object Model API represents the CSS min function.
1061
+ *
1062
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMin)
1063
+ */
1040
1064
  interface CSSMathMin extends CSSMathValue {
1041
1065
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMin/values) */
1042
1066
  readonly values: CSSNumericArray;
@@ -1047,7 +1071,11 @@ declare var CSSMathMin: {
1047
1071
  new(...args: CSSNumberish[]): CSSMathMin;
1048
1072
  };
1049
1073
 
1050
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathNegate) */
1074
+ /**
1075
+ * The **`CSSMathNegate`** interface of the CSS Typed Object Model API negates the value passed into it.
1076
+ *
1077
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathNegate)
1078
+ */
1051
1079
  interface CSSMathNegate extends CSSMathValue {
1052
1080
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathNegate/value) */
1053
1081
  readonly value: CSSNumericValue;
@@ -1058,7 +1086,11 @@ declare var CSSMathNegate: {
1058
1086
  new(arg: CSSNumberish): CSSMathNegate;
1059
1087
  };
1060
1088
 
1061
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathProduct) */
1089
+ /**
1090
+ * The **`CSSMathProduct`** interface of the CSS Typed Object Model API represents the result obtained by calling CSSNumericValue.add, CSSNumericValue.sub, or CSSNumericValue.toSum on CSSNumericValue.
1091
+ *
1092
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathProduct)
1093
+ */
1062
1094
  interface CSSMathProduct extends CSSMathValue {
1063
1095
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathProduct/values) */
1064
1096
  readonly values: CSSNumericArray;
@@ -1069,7 +1101,11 @@ declare var CSSMathProduct: {
1069
1101
  new(...args: CSSNumberish[]): CSSMathProduct;
1070
1102
  };
1071
1103
 
1072
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathSum) */
1104
+ /**
1105
+ * The **`CSSMathSum`** interface of the CSS Typed Object Model API represents the result obtained by calling CSSNumericValue.add, CSSNumericValue.sub, or CSSNumericValue.toSum on CSSNumericValue.
1106
+ *
1107
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathSum)
1108
+ */
1073
1109
  interface CSSMathSum extends CSSMathValue {
1074
1110
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathSum/values) */
1075
1111
  readonly values: CSSNumericArray;
@@ -1080,7 +1116,11 @@ declare var CSSMathSum: {
1080
1116
  new(...args: CSSNumberish[]): CSSMathSum;
1081
1117
  };
1082
1118
 
1083
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathValue) */
1119
+ /**
1120
+ * The **`CSSMathValue`** interface of the CSS Typed Object Model API a base class for classes representing complex numeric values.
1121
+ *
1122
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathValue)
1123
+ */
1084
1124
  interface CSSMathValue extends CSSNumericValue {
1085
1125
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathValue/operator) */
1086
1126
  readonly operator: CSSMathOperator;
@@ -1091,7 +1131,11 @@ declare var CSSMathValue: {
1091
1131
  new(): CSSMathValue;
1092
1132
  };
1093
1133
 
1094
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMatrixComponent) */
1134
+ /**
1135
+ * The **`CSSMatrixComponent`** interface of the CSS Typed Object Model API represents the matrix() and matrix3d() values of the individual transform property in CSS.
1136
+ *
1137
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMatrixComponent)
1138
+ */
1095
1139
  interface CSSMatrixComponent extends CSSTransformComponent {
1096
1140
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMatrixComponent/matrix) */
1097
1141
  matrix: DOMMatrix;
@@ -1102,7 +1146,11 @@ declare var CSSMatrixComponent: {
1102
1146
  new(matrix: DOMMatrixReadOnly, options?: CSSMatrixComponentOptions): CSSMatrixComponent;
1103
1147
  };
1104
1148
 
1105
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericArray) */
1149
+ /**
1150
+ * The **`CSSNumericArray`** interface of the CSS Typed Object Model API contains a list of CSSNumericValue objects.
1151
+ *
1152
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericArray)
1153
+ */
1106
1154
  interface CSSNumericArray {
1107
1155
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericArray/length) */
1108
1156
  readonly length: number;
@@ -1115,7 +1163,11 @@ declare var CSSNumericArray: {
1115
1163
  new(): CSSNumericArray;
1116
1164
  };
1117
1165
 
1118
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue) */
1166
+ /**
1167
+ * The **`CSSNumericValue`** interface of the CSS Typed Object Model API represents operations that all numeric values can perform.
1168
+ *
1169
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue)
1170
+ */
1119
1171
  interface CSSNumericValue extends CSSStyleValue {
1120
1172
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/add) */
1121
1173
  add(...values: CSSNumberish[]): CSSNumericValue;
@@ -1144,7 +1196,11 @@ declare var CSSNumericValue: {
1144
1196
  new(): CSSNumericValue;
1145
1197
  };
1146
1198
 
1147
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPerspective) */
1199
+ /**
1200
+ * The **`CSSPerspective`** interface of the CSS Typed Object Model API represents the perspective() value of the individual transform property in CSS.
1201
+ *
1202
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPerspective)
1203
+ */
1148
1204
  interface CSSPerspective extends CSSTransformComponent {
1149
1205
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPerspective/length) */
1150
1206
  length: CSSPerspectiveValue;
@@ -1155,7 +1211,11 @@ declare var CSSPerspective: {
1155
1211
  new(length: CSSPerspectiveValue): CSSPerspective;
1156
1212
  };
1157
1213
 
1158
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate) */
1214
+ /**
1215
+ * The **`CSSRotate`** interface of the CSS Typed Object Model API represents the rotate value of the individual transform property in CSS.
1216
+ *
1217
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate)
1218
+ */
1159
1219
  interface CSSRotate extends CSSTransformComponent {
1160
1220
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/angle) */
1161
1221
  angle: CSSNumericValue;
@@ -1173,7 +1233,11 @@ declare var CSSRotate: {
1173
1233
  new(x: CSSNumberish, y: CSSNumberish, z: CSSNumberish, angle: CSSNumericValue): CSSRotate;
1174
1234
  };
1175
1235
 
1176
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale) */
1236
+ /**
1237
+ * The **`CSSScale`** interface of the CSS Typed Object Model API represents the scale() and scale3d() values of the individual transform property in CSS.
1238
+ *
1239
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale)
1240
+ */
1177
1241
  interface CSSScale extends CSSTransformComponent {
1178
1242
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale/x) */
1179
1243
  x: CSSNumberish;
@@ -1188,7 +1252,11 @@ declare var CSSScale: {
1188
1252
  new(x: CSSNumberish, y: CSSNumberish, z?: CSSNumberish): CSSScale;
1189
1253
  };
1190
1254
 
1191
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew) */
1255
+ /**
1256
+ * The **`CSSSkew`** interface of the CSS Typed Object Model API is part of the CSSTransformValue interface.
1257
+ *
1258
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew)
1259
+ */
1192
1260
  interface CSSSkew extends CSSTransformComponent {
1193
1261
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew/ax) */
1194
1262
  ax: CSSNumericValue;
@@ -1201,7 +1269,11 @@ declare var CSSSkew: {
1201
1269
  new(ax: CSSNumericValue, ay: CSSNumericValue): CSSSkew;
1202
1270
  };
1203
1271
 
1204
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewX) */
1272
+ /**
1273
+ * The **`CSSSkewX`** interface of the CSS Typed Object Model API represents the `skewX()` value of the individual transform property in CSS.
1274
+ *
1275
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewX)
1276
+ */
1205
1277
  interface CSSSkewX extends CSSTransformComponent {
1206
1278
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewX/ax) */
1207
1279
  ax: CSSNumericValue;
@@ -1212,7 +1284,11 @@ declare var CSSSkewX: {
1212
1284
  new(ax: CSSNumericValue): CSSSkewX;
1213
1285
  };
1214
1286
 
1215
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewY) */
1287
+ /**
1288
+ * The **`CSSSkewY`** interface of the CSS Typed Object Model API represents the `skewY()` value of the individual transform property in CSS.
1289
+ *
1290
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewY)
1291
+ */
1216
1292
  interface CSSSkewY extends CSSTransformComponent {
1217
1293
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewY/ay) */
1218
1294
  ay: CSSNumericValue;
@@ -1223,7 +1299,11 @@ declare var CSSSkewY: {
1223
1299
  new(ay: CSSNumericValue): CSSSkewY;
1224
1300
  };
1225
1301
 
1226
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleValue) */
1302
+ /**
1303
+ * The **`CSSStyleValue`** interface of the CSS Typed Object Model API is the base class of all CSS values accessible through the Typed OM API.
1304
+ *
1305
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleValue)
1306
+ */
1227
1307
  interface CSSStyleValue {
1228
1308
  toString(): string;
1229
1309
  }
@@ -1233,7 +1313,11 @@ declare var CSSStyleValue: {
1233
1313
  new(): CSSStyleValue;
1234
1314
  };
1235
1315
 
1236
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformComponent) */
1316
+ /**
1317
+ * The **`CSSTransformComponent`** interface of the CSS Typed Object Model API is part of the CSSTransformValue interface.
1318
+ *
1319
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformComponent)
1320
+ */
1237
1321
  interface CSSTransformComponent {
1238
1322
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformComponent/is2D) */
1239
1323
  is2D: boolean;
@@ -1247,7 +1331,11 @@ declare var CSSTransformComponent: {
1247
1331
  new(): CSSTransformComponent;
1248
1332
  };
1249
1333
 
1250
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue) */
1334
+ /**
1335
+ * The **`CSSTransformValue`** interface of the CSS Typed Object Model API represents `transform-list` values as used by the CSS transform property.
1336
+ *
1337
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue)
1338
+ */
1251
1339
  interface CSSTransformValue extends CSSStyleValue {
1252
1340
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue/is2D) */
1253
1341
  readonly is2D: boolean;
@@ -1264,7 +1352,11 @@ declare var CSSTransformValue: {
1264
1352
  new(transforms: CSSTransformComponent[]): CSSTransformValue;
1265
1353
  };
1266
1354
 
1267
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate) */
1355
+ /**
1356
+ * The **`CSSTranslate`** interface of the CSS Typed Object Model API represents the translate() value of the individual transform property in CSS.
1357
+ *
1358
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate)
1359
+ */
1268
1360
  interface CSSTranslate extends CSSTransformComponent {
1269
1361
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate/x) */
1270
1362
  x: CSSNumericValue;
@@ -1279,7 +1371,11 @@ declare var CSSTranslate: {
1279
1371
  new(x: CSSNumericValue, y: CSSNumericValue, z?: CSSNumericValue): CSSTranslate;
1280
1372
  };
1281
1373
 
1282
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnitValue) */
1374
+ /**
1375
+ * The **`CSSUnitValue`** interface of the CSS Typed Object Model API represents values that contain a single unit type.
1376
+ *
1377
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnitValue)
1378
+ */
1283
1379
  interface CSSUnitValue extends CSSNumericValue {
1284
1380
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnitValue/unit) */
1285
1381
  readonly unit: string;
@@ -1292,7 +1388,11 @@ declare var CSSUnitValue: {
1292
1388
  new(value: number, unit: string): CSSUnitValue;
1293
1389
  };
1294
1390
 
1295
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnparsedValue) */
1391
+ /**
1392
+ * The **`CSSUnparsedValue`** interface of the CSS Typed Object Model API represents property values that reference custom properties.
1393
+ *
1394
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnparsedValue)
1395
+ */
1296
1396
  interface CSSUnparsedValue extends CSSStyleValue {
1297
1397
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnparsedValue/length) */
1298
1398
  readonly length: number;
@@ -1305,7 +1405,11 @@ declare var CSSUnparsedValue: {
1305
1405
  new(members: CSSUnparsedSegment[]): CSSUnparsedValue;
1306
1406
  };
1307
1407
 
1308
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSVariableReferenceValue) */
1408
+ /**
1409
+ * The **`CSSVariableReferenceValue`** interface of the CSS Typed Object Model API allows you to create a custom name for a built-in CSS value.
1410
+ *
1411
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSVariableReferenceValue)
1412
+ */
1309
1413
  interface CSSVariableReferenceValue {
1310
1414
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSVariableReferenceValue/fallback) */
1311
1415
  readonly fallback: CSSUnparsedValue | null;
@@ -1319,7 +1423,7 @@ declare var CSSVariableReferenceValue: {
1319
1423
  };
1320
1424
 
1321
1425
  /**
1322
- * Provides a storage mechanism for Request / Response object pairs that are cached, for example as part of the ServiceWorker life cycle. Note that the Cache interface is exposed to windowed scopes as well as workers. You don't have to use it in conjunction with service workers, even though it is defined in the service worker spec.
1426
+ * The **`Cache`** interface provides a persistent storage mechanism for Request / Response object pairs that are cached in long lived memory.
1323
1427
  * Available only in secure contexts.
1324
1428
  *
1325
1429
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache)
@@ -1347,7 +1451,7 @@ declare var Cache: {
1347
1451
  };
1348
1452
 
1349
1453
  /**
1350
- * The storage for Cache objects.
1454
+ * The **`CacheStorage`** interface represents the storage for Cache objects.
1351
1455
  * Available only in secure contexts.
1352
1456
  *
1353
1457
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage)
@@ -1425,7 +1529,7 @@ interface CanvasFilters {
1425
1529
  }
1426
1530
 
1427
1531
  /**
1428
- * An opaque object describing a gradient. It is returned by the methods CanvasRenderingContext2D.createLinearGradient() or CanvasRenderingContext2D.createRadialGradient().
1532
+ * The **`CanvasGradient`** interface represents an opaque object describing a gradient.
1429
1533
  *
1430
1534
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasGradient)
1431
1535
  */
@@ -1504,7 +1608,7 @@ interface CanvasPathDrawingStyles {
1504
1608
  }
1505
1609
 
1506
1610
  /**
1507
- * An opaque object describing a pattern, based on an image, a canvas, or a video, created by the CanvasRenderingContext2D.createPattern() method.
1611
+ * The **`CanvasPattern`** interface represents an opaque object describing a pattern, based on an image, a canvas, or a video, created by the CanvasRenderingContext2D.createPattern() method.
1508
1612
  *
1509
1613
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasPattern)
1510
1614
  */
@@ -1604,7 +1708,7 @@ interface CanvasTransform {
1604
1708
  }
1605
1709
 
1606
1710
  /**
1607
- * The Client interface represents an executable context such as a Worker, or a SharedWorker. Window clients are represented by the more-specific WindowClient. You can get Client/WindowClient objects from methods such as Clients.matchAll() and Clients.get().
1711
+ * The `Client` interface represents an executable context such as a Worker, or a SharedWorker.
1608
1712
  *
1609
1713
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Client)
1610
1714
  */
@@ -1628,7 +1732,7 @@ declare var Client: {
1628
1732
  };
1629
1733
 
1630
1734
  /**
1631
- * Provides access to Client objects. Access it via self.clients within a service worker.
1735
+ * The `Clients` interface provides access to Client objects.
1632
1736
  *
1633
1737
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Clients)
1634
1738
  */
@@ -1649,7 +1753,7 @@ declare var Clients: {
1649
1753
  };
1650
1754
 
1651
1755
  /**
1652
- * A CloseEvent is sent to clients using WebSockets when the connection is closed. This is delivered to the listener indicated by the WebSocket object's onclose attribute.
1756
+ * A `CloseEvent` is sent to clients using WebSockets when the connection is closed.
1653
1757
  *
1654
1758
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CloseEvent)
1655
1759
  */
@@ -1679,7 +1783,11 @@ declare var CloseEvent: {
1679
1783
  new(type: string, eventInitDict?: CloseEventInit): CloseEvent;
1680
1784
  };
1681
1785
 
1682
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompressionStream) */
1786
+ /**
1787
+ * The **`CompressionStream`** interface of the Compression Streams API is an API for compressing a stream of data.
1788
+ *
1789
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompressionStream)
1790
+ */
1683
1791
  interface CompressionStream extends GenericTransformStream {
1684
1792
  readonly readable: ReadableStream<Uint8Array>;
1685
1793
  readonly writable: WritableStream<BufferSource>;
@@ -1691,6 +1799,7 @@ declare var CompressionStream: {
1691
1799
  };
1692
1800
 
1693
1801
  /**
1802
+ * The **`CookieStore`** interface of the Cookie Store API provides methods for getting and setting cookies asynchronously from either a page or a service worker.
1694
1803
  * Available only in secure contexts.
1695
1804
  *
1696
1805
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CookieStore)
@@ -1716,7 +1825,7 @@ declare var CookieStore: {
1716
1825
  };
1717
1826
 
1718
1827
  /**
1719
- * This Streams API interface provides a built-in byte length queuing strategy that can be used when constructing streams.
1828
+ * The **`CountQueuingStrategy`** interface of the Streams API provides a built-in chunk counting queuing strategy that can be used when constructing streams.
1720
1829
  *
1721
1830
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CountQueuingStrategy)
1722
1831
  */
@@ -1733,7 +1842,7 @@ declare var CountQueuingStrategy: {
1733
1842
  };
1734
1843
 
1735
1844
  /**
1736
- * Basic cryptography features available in the current context. It allows access to a cryptographically strong random number generator and to cryptographic primitives.
1845
+ * The **`Crypto`** interface represents basic cryptography features available in the current context.
1737
1846
  *
1738
1847
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Crypto)
1739
1848
  */
@@ -1760,7 +1869,7 @@ declare var Crypto: {
1760
1869
  };
1761
1870
 
1762
1871
  /**
1763
- * The CryptoKey dictionary of the Web Crypto API represents a cryptographic key.
1872
+ * The **`CryptoKey`** interface of the Web Crypto API represents a cryptographic key obtained from one of the SubtleCrypto methods SubtleCrypto.generateKey, SubtleCrypto.deriveKey, SubtleCrypto.importKey, or SubtleCrypto.unwrapKey.
1764
1873
  * Available only in secure contexts.
1765
1874
  *
1766
1875
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey)
@@ -1781,7 +1890,11 @@ declare var CryptoKey: {
1781
1890
  new(): CryptoKey;
1782
1891
  };
1783
1892
 
1784
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomEvent) */
1893
+ /**
1894
+ * The **`CustomEvent`** interface represents events initialized by an application for any purpose.
1895
+ *
1896
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomEvent)
1897
+ */
1785
1898
  interface CustomEvent<T = any> extends Event {
1786
1899
  /**
1787
1900
  * Returns any custom data event was created with. Typically used for synthetic events.
@@ -1803,7 +1916,7 @@ declare var CustomEvent: {
1803
1916
  };
1804
1917
 
1805
1918
  /**
1806
- * An abnormal event (called an exception) which occurs as a result of calling a method or accessing a property of a web API.
1919
+ * The **`DOMException`** interface represents an abnormal event (called an **exception**) that occurs as a result of calling a method or accessing a property of a web API.
1807
1920
  *
1808
1921
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException)
1809
1922
  */
@@ -1875,7 +1988,11 @@ declare var DOMException: {
1875
1988
  readonly DATA_CLONE_ERR: 25;
1876
1989
  };
1877
1990
 
1878
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix) */
1991
+ /**
1992
+ * The **`DOMMatrix`** interface represents 4×4 matrices, suitable for 2D and 3D operations including rotation and translation.
1993
+ *
1994
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix)
1995
+ */
1879
1996
  interface DOMMatrix extends DOMMatrixReadOnly {
1880
1997
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
1881
1998
  a: number;
@@ -1953,7 +2070,11 @@ declare var DOMMatrix: {
1953
2070
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
1954
2071
  };
1955
2072
 
1956
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly) */
2073
+ /**
2074
+ * The **`DOMMatrixReadOnly`** interface represents a read-only 4×4 matrix, suitable for 2D and 3D operations.
2075
+ *
2076
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly)
2077
+ */
1957
2078
  interface DOMMatrixReadOnly {
1958
2079
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
1959
2080
  readonly a: number;
@@ -2047,7 +2168,11 @@ declare var DOMMatrixReadOnly: {
2047
2168
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
2048
2169
  };
2049
2170
 
2050
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPoint) */
2171
+ /**
2172
+ * A **`DOMPoint`** object represents a 2D or 3D point in a coordinate system; it includes values for the coordinates in up to three dimensions, as well as an optional perspective value.
2173
+ *
2174
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPoint)
2175
+ */
2051
2176
  interface DOMPoint extends DOMPointReadOnly {
2052
2177
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPoint/w) */
2053
2178
  w: number;
@@ -2066,7 +2191,11 @@ declare var DOMPoint: {
2066
2191
  fromPoint(other?: DOMPointInit): DOMPoint;
2067
2192
  };
2068
2193
 
2069
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly) */
2194
+ /**
2195
+ * The **`DOMPointReadOnly`** interface specifies the coordinate and perspective fields used by DOMPoint to define a 2D or 3D point in a coordinate system.
2196
+ *
2197
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly)
2198
+ */
2070
2199
  interface DOMPointReadOnly {
2071
2200
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/w) */
2072
2201
  readonly w: number;
@@ -2089,7 +2218,11 @@ declare var DOMPointReadOnly: {
2089
2218
  fromPoint(other?: DOMPointInit): DOMPointReadOnly;
2090
2219
  };
2091
2220
 
2092
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad) */
2221
+ /**
2222
+ * A `DOMQuad` is a collection of four `DOMPoint`s defining the corners of an arbitrary quadrilateral.
2223
+ *
2224
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad)
2225
+ */
2093
2226
  interface DOMQuad {
2094
2227
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p1) */
2095
2228
  readonly p1: DOMPoint;
@@ -2112,7 +2245,11 @@ declare var DOMQuad: {
2112
2245
  fromRect(other?: DOMRectInit): DOMQuad;
2113
2246
  };
2114
2247
 
2115
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect) */
2248
+ /**
2249
+ * A **`DOMRect`** describes the size and position of a rectangle.
2250
+ *
2251
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect)
2252
+ */
2116
2253
  interface DOMRect extends DOMRectReadOnly {
2117
2254
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/height) */
2118
2255
  height: number;
@@ -2131,7 +2268,11 @@ declare var DOMRect: {
2131
2268
  fromRect(other?: DOMRectInit): DOMRect;
2132
2269
  };
2133
2270
 
2134
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly) */
2271
+ /**
2272
+ * The **`DOMRectReadOnly`** interface specifies the standard properties (also used by DOMRect) to define a rectangle whose properties are immutable.
2273
+ *
2274
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly)
2275
+ */
2135
2276
  interface DOMRectReadOnly {
2136
2277
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/bottom) */
2137
2278
  readonly bottom: number;
@@ -2161,7 +2302,7 @@ declare var DOMRectReadOnly: {
2161
2302
  };
2162
2303
 
2163
2304
  /**
2164
- * A type returned by some APIs which contains a list of DOMString (strings).
2305
+ * The **`DOMStringList`** interface is a legacy type returned by some APIs and represents a non-modifiable list of strings (`DOMString`).
2165
2306
  *
2166
2307
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMStringList)
2167
2308
  */
@@ -2192,7 +2333,11 @@ declare var DOMStringList: {
2192
2333
  new(): DOMStringList;
2193
2334
  };
2194
2335
 
2195
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DecompressionStream) */
2336
+ /**
2337
+ * The **`DecompressionStream`** interface of the Compression Streams API is an API for decompressing a stream of data.
2338
+ *
2339
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DecompressionStream)
2340
+ */
2196
2341
  interface DecompressionStream extends GenericTransformStream {
2197
2342
  readonly readable: ReadableStream<Uint8Array>;
2198
2343
  readonly writable: WritableStream<BufferSource>;
@@ -2203,17 +2348,29 @@ declare var DecompressionStream: {
2203
2348
  new(format: CompressionFormat): DecompressionStream;
2204
2349
  };
2205
2350
 
2206
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_blend_minmax) */
2351
+ /**
2352
+ * The **`EXT_blend_minmax`** extension is part of the WebGL API and extends blending capabilities by adding two new blend equations: the minimum or maximum color components of the source and destination colors.
2353
+ *
2354
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_blend_minmax)
2355
+ */
2207
2356
  interface EXT_blend_minmax {
2208
2357
  readonly MIN_EXT: 0x8007;
2209
2358
  readonly MAX_EXT: 0x8008;
2210
2359
  }
2211
2360
 
2212
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_color_buffer_float) */
2361
+ /**
2362
+ * The **`EXT_color_buffer_float`** extension is part of WebGL and adds the ability to render a variety of floating point formats.
2363
+ *
2364
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_color_buffer_float)
2365
+ */
2213
2366
  interface EXT_color_buffer_float {
2214
2367
  }
2215
2368
 
2216
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_color_buffer_half_float) */
2369
+ /**
2370
+ * The **`EXT_color_buffer_half_float`** extension is part of the WebGL API and adds the ability to render to 16-bit floating-point color buffers.
2371
+ *
2372
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_color_buffer_half_float)
2373
+ */
2217
2374
  interface EXT_color_buffer_half_float {
2218
2375
  readonly RGBA16F_EXT: 0x881A;
2219
2376
  readonly RGB16F_EXT: 0x881B;
@@ -2221,19 +2378,27 @@ interface EXT_color_buffer_half_float {
2221
2378
  readonly UNSIGNED_NORMALIZED_EXT: 0x8C17;
2222
2379
  }
2223
2380
 
2224
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_float_blend) */
2381
+ /**
2382
+ * The WebGL API's `EXT_float_blend` extension allows blending and draw buffers with 32-bit floating-point components.
2383
+ *
2384
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_float_blend)
2385
+ */
2225
2386
  interface EXT_float_blend {
2226
2387
  }
2227
2388
 
2228
2389
  /**
2229
- * The EXT_frag_depth extension is part of the WebGL API and enables to set a depth value of a fragment from within the fragment shader.
2390
+ * The **`EXT_frag_depth`** extension is part of the WebGL API and enables to set a depth value of a fragment from within the fragment shader.
2230
2391
  *
2231
2392
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_frag_depth)
2232
2393
  */
2233
2394
  interface EXT_frag_depth {
2234
2395
  }
2235
2396
 
2236
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_sRGB) */
2397
+ /**
2398
+ * The **`EXT_sRGB`** extension is part of the WebGL API and adds sRGB support to textures and framebuffer objects.
2399
+ *
2400
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_sRGB)
2401
+ */
2237
2402
  interface EXT_sRGB {
2238
2403
  readonly SRGB_EXT: 0x8C40;
2239
2404
  readonly SRGB_ALPHA_EXT: 0x8C42;
@@ -2241,11 +2406,19 @@ interface EXT_sRGB {
2241
2406
  readonly FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT: 0x8210;
2242
2407
  }
2243
2408
 
2244
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_shader_texture_lod) */
2409
+ /**
2410
+ * The **`EXT_shader_texture_lod`** extension is part of the WebGL API and adds additional texture functions to the OpenGL ES Shading Language which provide the shader writer with explicit control of LOD (Level of detail).
2411
+ *
2412
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_shader_texture_lod)
2413
+ */
2245
2414
  interface EXT_shader_texture_lod {
2246
2415
  }
2247
2416
 
2248
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_texture_compression_bptc) */
2417
+ /**
2418
+ * The `EXT_texture_compression_bptc` extension is part of the WebGL API and exposes 4 BPTC compressed texture formats.
2419
+ *
2420
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_texture_compression_bptc)
2421
+ */
2249
2422
  interface EXT_texture_compression_bptc {
2250
2423
  readonly COMPRESSED_RGBA_BPTC_UNORM_EXT: 0x8E8C;
2251
2424
  readonly COMPRESSED_SRGB_ALPHA_BPTC_UNORM_EXT: 0x8E8D;
@@ -2253,7 +2426,11 @@ interface EXT_texture_compression_bptc {
2253
2426
  readonly COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_EXT: 0x8E8F;
2254
2427
  }
2255
2428
 
2256
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_texture_compression_rgtc) */
2429
+ /**
2430
+ * The `EXT_texture_compression_rgtc` extension is part of the WebGL API and exposes 4 RGTC compressed texture formats.
2431
+ *
2432
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_texture_compression_rgtc)
2433
+ */
2257
2434
  interface EXT_texture_compression_rgtc {
2258
2435
  readonly COMPRESSED_RED_RGTC1_EXT: 0x8DBB;
2259
2436
  readonly COMPRESSED_SIGNED_RED_RGTC1_EXT: 0x8DBC;
@@ -2262,7 +2439,7 @@ interface EXT_texture_compression_rgtc {
2262
2439
  }
2263
2440
 
2264
2441
  /**
2265
- * The EXT_texture_filter_anisotropic extension is part of the WebGL API and exposes two constants for anisotropic filtering (AF).
2442
+ * The **`EXT_texture_filter_anisotropic`** extension is part of the WebGL API and exposes two constants for anisotropic filtering (AF).
2266
2443
  *
2267
2444
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_texture_filter_anisotropic)
2268
2445
  */
@@ -2271,7 +2448,11 @@ interface EXT_texture_filter_anisotropic {
2271
2448
  readonly MAX_TEXTURE_MAX_ANISOTROPY_EXT: 0x84FF;
2272
2449
  }
2273
2450
 
2274
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_texture_norm16) */
2451
+ /**
2452
+ * The **`EXT_texture_norm16`** extension is part of the WebGL API and provides a set of new 16-bit signed normalized and unsigned normalized formats (fixed-point texture, renderbuffer and texture buffer).
2453
+ *
2454
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EXT_texture_norm16)
2455
+ */
2275
2456
  interface EXT_texture_norm16 {
2276
2457
  readonly R16_EXT: 0x822A;
2277
2458
  readonly RG16_EXT: 0x822C;
@@ -2284,7 +2465,7 @@ interface EXT_texture_norm16 {
2284
2465
  }
2285
2466
 
2286
2467
  /**
2287
- * Events providing information related to errors in scripts or in files.
2468
+ * The **`ErrorEvent`** interface represents events providing information related to errors in scripts or in files.
2288
2469
  *
2289
2470
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent)
2290
2471
  */
@@ -2307,7 +2488,7 @@ declare var ErrorEvent: {
2307
2488
  };
2308
2489
 
2309
2490
  /**
2310
- * An event which takes place in the DOM.
2491
+ * The **`Event`** interface represents an event which takes place on an `EventTarget`.
2311
2492
  *
2312
2493
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event)
2313
2494
  */
@@ -2449,7 +2630,11 @@ interface EventSourceEventMap {
2449
2630
  "open": Event;
2450
2631
  }
2451
2632
 
2452
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource) */
2633
+ /**
2634
+ * The **`EventSource`** interface is web content's interface to server-sent events.
2635
+ *
2636
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource)
2637
+ */
2453
2638
  interface EventSource extends EventTarget {
2454
2639
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/error_event) */
2455
2640
  onerror: ((this: EventSource, ev: Event) => any) | null;
@@ -2501,7 +2686,7 @@ declare var EventSource: {
2501
2686
  };
2502
2687
 
2503
2688
  /**
2504
- * EventTarget is a DOM interface implemented by objects that can receive events and may have listeners for them.
2689
+ * The **`EventTarget`** interface is implemented by objects that can receive events and may have listeners for them.
2505
2690
  *
2506
2691
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget)
2507
2692
  */
@@ -2543,7 +2728,11 @@ declare var EventTarget: {
2543
2728
  new(): EventTarget;
2544
2729
  };
2545
2730
 
2546
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ExtendableCookieChangeEvent) */
2731
+ /**
2732
+ * The **`ExtendableCookieChangeEvent`** interface of the Cookie Store API is the event type passed to ServiceWorkerGlobalScope/cookiechange_event event fired at the ServiceWorkerGlobalScope when any cookie changes occur which match the service worker's cookie change subscription list.
2733
+ *
2734
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ExtendableCookieChangeEvent)
2735
+ */
2547
2736
  interface ExtendableCookieChangeEvent extends ExtendableEvent {
2548
2737
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ExtendableCookieChangeEvent/changed) */
2549
2738
  readonly changed: ReadonlyArray<CookieListItem>;
@@ -2557,7 +2746,7 @@ declare var ExtendableCookieChangeEvent: {
2557
2746
  };
2558
2747
 
2559
2748
  /**
2560
- * Extends the lifetime of the install and activate events dispatched on the global scope as part of the service worker lifecycle. This ensures that any functional events (like FetchEvent) are not dispatched until it upgrades database schemas and deletes the outdated cache entries.
2749
+ * The **`ExtendableEvent`** interface extends the lifetime of the `install` and `activate` events dispatched on the global scope as part of the service worker lifecycle.
2561
2750
  *
2562
2751
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ExtendableEvent)
2563
2752
  */
@@ -2572,7 +2761,7 @@ declare var ExtendableEvent: {
2572
2761
  };
2573
2762
 
2574
2763
  /**
2575
- * This ServiceWorker API interface represents the event object of a message event fired on a service worker (when a channel message is received on the ServiceWorkerGlobalScope from another context) — extends the lifetime of such events.
2764
+ * The **`ExtendableMessageEvent`** interface of the Service Worker API represents the event object of a ServiceWorkerGlobalScope/message_event event fired on a service worker (when a message is received on the ServiceWorkerGlobalScope from another context) — extends the lifetime of such events.
2576
2765
  *
2577
2766
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ExtendableMessageEvent)
2578
2767
  */
@@ -2595,7 +2784,7 @@ declare var ExtendableMessageEvent: {
2595
2784
  };
2596
2785
 
2597
2786
  /**
2598
- * This is the event type for fetch events dispatched on the service worker global scope. It contains information about the fetch, including the request and how the receiver will treat the response. It provides the event.respondWith() method, which allows us to provide a response to this fetch.
2787
+ * This is the event type for `fetch` events dispatched on the ServiceWorkerGlobalScope.
2599
2788
  *
2600
2789
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FetchEvent)
2601
2790
  */
@@ -2620,7 +2809,7 @@ declare var FetchEvent: {
2620
2809
  };
2621
2810
 
2622
2811
  /**
2623
- * Provides information about files and allows JavaScript in a web page to access their content.
2812
+ * The **`File`** interface provides information about files and allows JavaScript in a web page to access their content.
2624
2813
  *
2625
2814
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/File)
2626
2815
  */
@@ -2639,7 +2828,7 @@ declare var File: {
2639
2828
  };
2640
2829
 
2641
2830
  /**
2642
- * An object of this type is returned by the files property of the HTML <input> element; this lets you access the list of files selected with the <input type="file"> element. It's also used for a list of files dropped into web content when using the drag and drop API; see the DataTransfer object for details on this usage.
2831
+ * The **`FileList`** interface represents an object of this type returned by the `files` property of the HTML input element; this lets you access the list of files selected with the `<input type='file'>` element.
2643
2832
  *
2644
2833
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileList)
2645
2834
  */
@@ -2666,7 +2855,7 @@ interface FileReaderEventMap {
2666
2855
  }
2667
2856
 
2668
2857
  /**
2669
- * Lets web applications asynchronously read the contents of files (or raw data buffers) stored on the user's computer, using File or Blob objects to specify the file or data to read.
2858
+ * The **`FileReader`** interface lets web applications asynchronously read the contents of files (or raw data buffers) stored on the user's computer, using File or Blob objects to specify the file or data to read.
2670
2859
  *
2671
2860
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader)
2672
2861
  */
@@ -2721,6 +2910,7 @@ declare var FileReader: {
2721
2910
  };
2722
2911
 
2723
2912
  /**
2913
+ * The **`FileSystemDirectoryHandle`** interface of the File System API provides a handle to a file system directory.
2724
2914
  * Available only in secure contexts.
2725
2915
  *
2726
2916
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle)
@@ -2743,6 +2933,7 @@ declare var FileSystemDirectoryHandle: {
2743
2933
  };
2744
2934
 
2745
2935
  /**
2936
+ * The **`FileSystemFileHandle`** interface of the File System API represents a handle to a file system entry.
2746
2937
  * Available only in secure contexts.
2747
2938
  *
2748
2939
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemFileHandle)
@@ -2761,6 +2952,7 @@ declare var FileSystemFileHandle: {
2761
2952
  };
2762
2953
 
2763
2954
  /**
2955
+ * The **`FileSystemHandle`** interface of the File System API is an object which represents a file or directory entry.
2764
2956
  * Available only in secure contexts.
2765
2957
  *
2766
2958
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle)
@@ -2780,6 +2972,7 @@ declare var FileSystemHandle: {
2780
2972
  };
2781
2973
 
2782
2974
  /**
2975
+ * The **`FileSystemWritableFileStream`** interface of the File System API is a WritableStream object with additional convenience methods, which operates on a single file on disk.
2783
2976
  * Available only in secure contexts.
2784
2977
  *
2785
2978
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemWritableFileStream)
@@ -2798,7 +2991,11 @@ declare var FileSystemWritableFileStream: {
2798
2991
  new(): FileSystemWritableFileStream;
2799
2992
  };
2800
2993
 
2801
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace) */
2994
+ /**
2995
+ * The **`FontFace`** interface of the CSS Font Loading API represents a single usable font face.
2996
+ *
2997
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace)
2998
+ */
2802
2999
  interface FontFace {
2803
3000
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/ascentOverride) */
2804
3001
  ascentOverride: string;
@@ -2839,7 +3036,11 @@ interface FontFaceSetEventMap {
2839
3036
  "loadingerror": FontFaceSetLoadEvent;
2840
3037
  }
2841
3038
 
2842
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSet) */
3039
+ /**
3040
+ * The **`FontFaceSet`** interface of the CSS Font Loading API manages the loading of font-faces and querying of their download status.
3041
+ *
3042
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSet)
3043
+ */
2843
3044
  interface FontFaceSet extends EventTarget {
2844
3045
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSet/loading_event) */
2845
3046
  onloading: ((this: FontFaceSet, ev: FontFaceSetLoadEvent) => any) | null;
@@ -2867,7 +3068,11 @@ declare var FontFaceSet: {
2867
3068
  new(): FontFaceSet;
2868
3069
  };
2869
3070
 
2870
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSetLoadEvent) */
3071
+ /**
3072
+ * The **`FontFaceSetLoadEvent`** interface of the CSS Font Loading API represents events fired at a FontFaceSet after it starts loading font faces.
3073
+ *
3074
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSetLoadEvent)
3075
+ */
2871
3076
  interface FontFaceSetLoadEvent extends Event {
2872
3077
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSetLoadEvent/fontfaces) */
2873
3078
  readonly fontfaces: ReadonlyArray<FontFace>;
@@ -2884,7 +3089,7 @@ interface FontFaceSource {
2884
3089
  }
2885
3090
 
2886
3091
  /**
2887
- * Provides a way to easily construct a set of key/value pairs representing form fields and their values, which can then be easily sent using the XMLHttpRequest.send() method. It uses the same format a form would use if the encoding type were set to "multipart/form-data".
3092
+ * The **`FormData`** interface provides a way to construct a set of key/value pairs representing form fields and their values, which can be sent using the Window/fetch, XMLHttpRequest.send() or navigator.sendBeacon() methods.
2888
3093
  *
2889
3094
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData)
2890
3095
  */
@@ -2914,6 +3119,7 @@ declare var FormData: {
2914
3119
  };
2915
3120
 
2916
3121
  /**
3122
+ * The **`GPUError`** interface of the WebGPU API is the base interface for errors surfaced by GPUDevice.popErrorScope and the GPUDevice.uncapturederror_event event.
2917
3123
  * Available only in secure contexts.
2918
3124
  *
2919
3125
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUError)
@@ -2931,7 +3137,7 @@ interface GenericTransformStream {
2931
3137
  }
2932
3138
 
2933
3139
  /**
2934
- * This Fetch API interface allows you to perform various actions on HTTP request and response headers. These actions include retrieving, setting, adding to, and removing. A Headers object has an associated header list, which is initially empty and consists of zero or more name and value pairs.  You can add to this using methods like append() (see Examples.) In all methods of this interface, header names are matched by case-insensitive byte sequence.
3140
+ * The **`Headers`** interface of the Fetch API allows you to perform various actions on HTTP request and response headers.
2935
3141
  *
2936
3142
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers)
2937
3143
  */
@@ -2957,7 +3163,7 @@ declare var Headers: {
2957
3163
  };
2958
3164
 
2959
3165
  /**
2960
- * This IndexedDB API interface represents a cursor for traversing or iterating over multiple records in a database.
3166
+ * The **`IDBCursor`** interface of the IndexedDB API represents a cursor for traversing or iterating over multiple records in a database.
2961
3167
  *
2962
3168
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor)
2963
3169
  */
@@ -3032,7 +3238,7 @@ declare var IDBCursor: {
3032
3238
  };
3033
3239
 
3034
3240
  /**
3035
- * This IndexedDB API interface represents a cursor for traversing or iterating over multiple records in a database. It is the same as the IDBCursor, except that it includes the value property.
3241
+ * The **`IDBCursorWithValue`** interface of the IndexedDB API represents a cursor for traversing or iterating over multiple records in a database.
3036
3242
  *
3037
3243
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursorWithValue)
3038
3244
  */
@@ -3058,7 +3264,7 @@ interface IDBDatabaseEventMap {
3058
3264
  }
3059
3265
 
3060
3266
  /**
3061
- * This IndexedDB API interface provides a connection to a database; you can use an IDBDatabase object to open a transaction on your database then create, manipulate, and delete objects (data) in that database. The interface provides the only way to get and manage versions of the database.
3267
+ * The **`IDBDatabase`** interface of the IndexedDB API provides a connection to a database; you can use an `IDBDatabase` object to open a transaction on your database then create, manipulate, and delete objects (data) in that database.
3062
3268
  *
3063
3269
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase)
3064
3270
  */
@@ -3127,7 +3333,7 @@ declare var IDBDatabase: {
3127
3333
  };
3128
3334
 
3129
3335
  /**
3130
- * In the following code snippet, we make a request to open a database, and include handlers for the success and error cases. For a full working example, see our To-do Notifications app (view example live.)
3336
+ * The **`IDBFactory`** interface of the IndexedDB API lets applications asynchronously access the indexed databases.
3131
3337
  *
3132
3338
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBFactory)
3133
3339
  */
@@ -3162,7 +3368,7 @@ declare var IDBFactory: {
3162
3368
  };
3163
3369
 
3164
3370
  /**
3165
- * IDBIndex interface of the IndexedDB API provides asynchronous access to an index in a database. An index is a kind of object store for looking up records in another object store, called the referenced object store. You use this interface to retrieve data.
3371
+ * `IDBIndex` interface of the IndexedDB API provides asynchronous access to an index in a database.
3166
3372
  *
3167
3373
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex)
3168
3374
  */
@@ -3249,7 +3455,7 @@ declare var IDBIndex: {
3249
3455
  };
3250
3456
 
3251
3457
  /**
3252
- * A key range can be a single value or a range with upper and lower bounds or endpoints. If the key range has both upper and lower bounds, then it is bounded; if it has no bounds, it is unbounded. A bounded key range can either be open (the endpoints are excluded) or closed (the endpoints are included). To retrieve all keys within a certain range, you can use the following code constructs:
3458
+ * The **`IDBKeyRange`** interface of the IndexedDB API represents a continuous interval over some data type that is used for keys.
3253
3459
  *
3254
3460
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange)
3255
3461
  */
@@ -3316,7 +3522,7 @@ declare var IDBKeyRange: {
3316
3522
  };
3317
3523
 
3318
3524
  /**
3319
- * This example shows a variety of different uses of object stores, from updating the data structure with IDBObjectStore.createIndex inside an onupgradeneeded function, to adding a new item to our object store with IDBObjectStore.add. For a full working example, see our To-do Notifications app (view example live.)
3525
+ * The **`IDBObjectStore`** interface of the IndexedDB API represents an object store in a database.
3320
3526
  *
3321
3527
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore)
3322
3528
  */
@@ -3478,7 +3684,7 @@ interface IDBOpenDBRequestEventMap extends IDBRequestEventMap {
3478
3684
  }
3479
3685
 
3480
3686
  /**
3481
- * Also inherits methods from its parents IDBRequest and EventTarget.
3687
+ * The **`IDBOpenDBRequest`** interface of the IndexedDB API provides access to the results of requests to open or delete databases (performed using IDBFactory.open and IDBFactory.deleteDatabase), using specific event handler attributes.
3482
3688
  *
3483
3689
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBOpenDBRequest)
3484
3690
  */
@@ -3504,7 +3710,7 @@ interface IDBRequestEventMap {
3504
3710
  }
3505
3711
 
3506
3712
  /**
3507
- * The request object does not initially contain any information about the result of the operation, but once information becomes available, an event is fired on the request, and the information becomes available through the properties of the IDBRequest instance.
3713
+ * The **`IDBRequest`** interface of the IndexedDB API provides access to results of asynchronous requests to databases and database objects using event handler attributes.
3508
3714
  *
3509
3715
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest)
3510
3716
  */
@@ -3560,7 +3766,11 @@ interface IDBTransactionEventMap {
3560
3766
  "error": Event;
3561
3767
  }
3562
3768
 
3563
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction) */
3769
+ /**
3770
+ * The **`IDBTransaction`** interface of the IndexedDB API provides a static, asynchronous transaction on a database using event handler attributes.
3771
+ *
3772
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction)
3773
+ */
3564
3774
  interface IDBTransaction extends EventTarget {
3565
3775
  /**
3566
3776
  * Returns the transaction's connection.
@@ -3620,7 +3830,7 @@ declare var IDBTransaction: {
3620
3830
  };
3621
3831
 
3622
3832
  /**
3623
- * This IndexedDB API interface indicates that the version of the database has changed, as the result of an IDBOpenDBRequest.onupgradeneeded event handler function.
3833
+ * The **`IDBVersionChangeEvent`** interface of the IndexedDB API indicates that the version of the database has changed, as the result of an IDBOpenDBRequest.upgradeneeded_event event handler function.
3624
3834
  *
3625
3835
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBVersionChangeEvent)
3626
3836
  */
@@ -3636,7 +3846,11 @@ declare var IDBVersionChangeEvent: {
3636
3846
  new(type: string, eventInitDict?: IDBVersionChangeEventInit): IDBVersionChangeEvent;
3637
3847
  };
3638
3848
 
3639
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmap) */
3849
+ /**
3850
+ * The **`ImageBitmap`** interface represents a bitmap image which can be drawn to a canvas without undue latency.
3851
+ *
3852
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmap)
3853
+ */
3640
3854
  interface ImageBitmap {
3641
3855
  /**
3642
3856
  * Returns the intrinsic height of the image, in CSS pixels.
@@ -3663,7 +3877,11 @@ declare var ImageBitmap: {
3663
3877
  new(): ImageBitmap;
3664
3878
  };
3665
3879
 
3666
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmapRenderingContext) */
3880
+ /**
3881
+ * The **`ImageBitmapRenderingContext`** interface is a canvas rendering context that provides the functionality to replace the canvas's contents with the given ImageBitmap.
3882
+ *
3883
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmapRenderingContext)
3884
+ */
3667
3885
  interface ImageBitmapRenderingContext {
3668
3886
  /**
3669
3887
  * Transfers the underlying bitmap data from imageBitmap to context, and the bitmap becomes the contents of the canvas element to which context is bound.
@@ -3679,7 +3897,7 @@ declare var ImageBitmapRenderingContext: {
3679
3897
  };
3680
3898
 
3681
3899
  /**
3682
- * The underlying pixel data of an area of a <canvas> element. It is created using the ImageData() constructor or creator methods on the CanvasRenderingContext2D object associated with a canvas: createImageData() and getImageData(). It can also be used to set a part of the canvas by using putImageData().
3900
+ * The **`ImageData`** interface represents the underlying pixel data of an area of a canvas element.
3683
3901
  *
3684
3902
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageData)
3685
3903
  */
@@ -3717,12 +3935,17 @@ interface ImportMeta {
3717
3935
  resolve(specifier: string): string;
3718
3936
  }
3719
3937
 
3720
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/KHR_parallel_shader_compile) */
3938
+ /**
3939
+ * The **`KHR_parallel_shader_compile`** extension is part of the WebGL API and enables a non-blocking poll operation, so that compile/link status availability (`COMPLETION_STATUS_KHR`) can be queried without potentially incurring stalls.
3940
+ *
3941
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KHR_parallel_shader_compile)
3942
+ */
3721
3943
  interface KHR_parallel_shader_compile {
3722
3944
  readonly COMPLETION_STATUS_KHR: 0x91B1;
3723
3945
  }
3724
3946
 
3725
3947
  /**
3948
+ * The **`Lock`** interface of the Web Locks API provides the name and mode of a lock.
3726
3949
  * Available only in secure contexts.
3727
3950
  *
3728
3951
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Lock)
@@ -3740,6 +3963,7 @@ declare var Lock: {
3740
3963
  };
3741
3964
 
3742
3965
  /**
3966
+ * The **`LockManager`** interface of the Web Locks API provides methods for requesting a new Lock object and querying for an existing `Lock` object.
3743
3967
  * Available only in secure contexts.
3744
3968
  *
3745
3969
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/LockManager)
@@ -3757,7 +3981,11 @@ declare var LockManager: {
3757
3981
  new(): LockManager;
3758
3982
  };
3759
3983
 
3760
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaCapabilities) */
3984
+ /**
3985
+ * The **`MediaCapabilities`** interface of the Media Capabilities API provides information about the decoding abilities of the device, system and browser.
3986
+ *
3987
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaCapabilities)
3988
+ */
3761
3989
  interface MediaCapabilities {
3762
3990
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaCapabilities/decodingInfo) */
3763
3991
  decodingInfo(configuration: MediaDecodingConfiguration): Promise<MediaCapabilitiesDecodingInfo>;
@@ -3771,7 +3999,7 @@ declare var MediaCapabilities: {
3771
3999
  };
3772
4000
 
3773
4001
  /**
3774
- * This Channel Messaging API interface allows us to create a new message channel and send data through it via its two MessagePort properties.
4002
+ * The **`MessageChannel`** interface of the Channel Messaging API allows us to create a new message channel and send data through it via its two MessagePort properties.
3775
4003
  *
3776
4004
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageChannel)
3777
4005
  */
@@ -3796,7 +4024,7 @@ declare var MessageChannel: {
3796
4024
  };
3797
4025
 
3798
4026
  /**
3799
- * A message received by a target object.
4027
+ * The **`MessageEvent`** interface represents a message received by a target object.
3800
4028
  *
3801
4029
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent)
3802
4030
  */
@@ -3862,7 +4090,7 @@ interface MessagePortEventMap extends MessageEventTargetEventMap {
3862
4090
  }
3863
4091
 
3864
4092
  /**
3865
- * This Channel Messaging API interface represents one of the two ports of a MessageChannel, allowing messages to be sent from one port and listening out for them arriving at the other.
4093
+ * The **`MessagePort`** interface of the Channel Messaging API represents one of the two ports of a MessageChannel, allowing messages to be sent from one port and listening out for them arriving at the other.
3866
4094
  *
3867
4095
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessagePort)
3868
4096
  */
@@ -3900,6 +4128,7 @@ declare var MessagePort: {
3900
4128
  };
3901
4129
 
3902
4130
  /**
4131
+ * The **`NavigationPreloadManager`** interface of the Service Worker API provides methods for managing the preloading of resources in parallel with service worker bootup.
3903
4132
  * Available only in secure contexts.
3904
4133
  *
3905
4134
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPreloadManager)
@@ -4000,7 +4229,7 @@ interface NotificationEventMap {
4000
4229
  }
4001
4230
 
4002
4231
  /**
4003
- * This Notifications API interface is used to configure and display desktop notifications to the user.
4232
+ * The **`Notification`** interface of the Notifications API is used to configure and display desktop notifications to the user.
4004
4233
  *
4005
4234
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification)
4006
4235
  */
@@ -4049,7 +4278,7 @@ declare var Notification: {
4049
4278
  };
4050
4279
 
4051
4280
  /**
4052
- * The parameter passed into the onnotificationclick handler, the NotificationEvent interface represents a notification click event that is dispatched on the ServiceWorkerGlobalScope of a ServiceWorker.
4281
+ * The **`NotificationEvent`** interface of the Notifications API represents a notification event dispatched on the ServiceWorkerGlobalScope of a ServiceWorker.
4053
4282
  *
4054
4283
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NotificationEvent)
4055
4284
  */
@@ -4065,7 +4294,11 @@ declare var NotificationEvent: {
4065
4294
  new(type: string, eventInitDict: NotificationEventInit): NotificationEvent;
4066
4295
  };
4067
4296
 
4068
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_draw_buffers_indexed) */
4297
+ /**
4298
+ * The **`OES_draw_buffers_indexed`** extension is part of the WebGL API and enables the use of different blend options when writing to multiple color buffers simultaneously.
4299
+ *
4300
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_draw_buffers_indexed)
4301
+ */
4069
4302
  interface OES_draw_buffers_indexed {
4070
4303
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_draw_buffers_indexed/blendEquationSeparateiOES) */
4071
4304
  blendEquationSeparateiOES(buf: GLuint, modeRGB: GLenum, modeAlpha: GLenum): void;
@@ -4084,19 +4317,23 @@ interface OES_draw_buffers_indexed {
4084
4317
  }
4085
4318
 
4086
4319
  /**
4087
- * The OES_element_index_uint extension is part of the WebGL API and adds support for gl.UNSIGNED_INT types to WebGLRenderingContext.drawElements().
4320
+ * The **`OES_element_index_uint`** extension is part of the WebGL API and adds support for `gl.UNSIGNED_INT` types to WebGLRenderingContext.drawElements().
4088
4321
  *
4089
4322
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_element_index_uint)
4090
4323
  */
4091
4324
  interface OES_element_index_uint {
4092
4325
  }
4093
4326
 
4094
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_fbo_render_mipmap) */
4327
+ /**
4328
+ * The `OES_fbo_render_mipmap` extension is part of the WebGL API and makes it possible to attach any level of a texture to a framebuffer object.
4329
+ *
4330
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_fbo_render_mipmap)
4331
+ */
4095
4332
  interface OES_fbo_render_mipmap {
4096
4333
  }
4097
4334
 
4098
4335
  /**
4099
- * The OES_standard_derivatives extension is part of the WebGL API and adds the GLSL derivative functions dFdx, dFdy, and fwidth.
4336
+ * The **`OES_standard_derivatives`** extension is part of the WebGL API and adds the GLSL derivative functions `dFdx`, `dFdy`, and `fwidth`.
4100
4337
  *
4101
4338
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_standard_derivatives)
4102
4339
  */
@@ -4105,7 +4342,7 @@ interface OES_standard_derivatives {
4105
4342
  }
4106
4343
 
4107
4344
  /**
4108
- * The OES_texture_float extension is part of the WebGL API and exposes floating-point pixel types for textures.
4345
+ * The **`OES_texture_float`** extension is part of the WebGL API and exposes floating-point pixel types for textures.
4109
4346
  *
4110
4347
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_texture_float)
4111
4348
  */
@@ -4113,7 +4350,7 @@ interface OES_texture_float {
4113
4350
  }
4114
4351
 
4115
4352
  /**
4116
- * The OES_texture_float_linear extension is part of the WebGL API and allows linear filtering with floating-point pixel types for textures.
4353
+ * The **`OES_texture_float_linear`** extension is part of the WebGL API and allows linear filtering with floating-point pixel types for textures.
4117
4354
  *
4118
4355
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_texture_float_linear)
4119
4356
  */
@@ -4121,7 +4358,7 @@ interface OES_texture_float_linear {
4121
4358
  }
4122
4359
 
4123
4360
  /**
4124
- * The OES_texture_half_float extension is part of the WebGL API and adds texture formats with 16- (aka half float) and 32-bit floating-point components.
4361
+ * The **`OES_texture_half_float`** extension is part of the WebGL API and adds texture formats with 16- (aka half float) and 32-bit floating-point components.
4125
4362
  *
4126
4363
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_texture_half_float)
4127
4364
  */
@@ -4130,14 +4367,18 @@ interface OES_texture_half_float {
4130
4367
  }
4131
4368
 
4132
4369
  /**
4133
- * The OES_texture_half_float_linear extension is part of the WebGL API and allows linear filtering with half floating-point pixel types for textures.
4370
+ * The **`OES_texture_half_float_linear`** extension is part of the WebGL API and allows linear filtering with half floating-point pixel types for textures.
4134
4371
  *
4135
4372
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_texture_half_float_linear)
4136
4373
  */
4137
4374
  interface OES_texture_half_float_linear {
4138
4375
  }
4139
4376
 
4140
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object) */
4377
+ /**
4378
+ * The **OES_vertex_array_object** extension is part of the WebGL API and provides vertex array objects (VAOs) which encapsulate vertex array states.
4379
+ *
4380
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object)
4381
+ */
4141
4382
  interface OES_vertex_array_object {
4142
4383
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object/bindVertexArrayOES) */
4143
4384
  bindVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES | null): void;
@@ -4150,7 +4391,11 @@ interface OES_vertex_array_object {
4150
4391
  readonly VERTEX_ARRAY_BINDING_OES: 0x85B5;
4151
4392
  }
4152
4393
 
4153
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OVR_multiview2) */
4394
+ /**
4395
+ * The `OVR_multiview2` extension is part of the WebGL API and adds support for rendering into multiple views simultaneously.
4396
+ *
4397
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OVR_multiview2)
4398
+ */
4154
4399
  interface OVR_multiview2 {
4155
4400
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OVR_multiview2/framebufferTextureMultiviewOVR) */
4156
4401
  framebufferTextureMultiviewOVR(target: GLenum, attachment: GLenum, texture: WebGLTexture | null, level: GLint, baseViewIndex: GLint, numViews: GLsizei): void;
@@ -4165,7 +4410,11 @@ interface OffscreenCanvasEventMap {
4165
4410
  "contextrestored": Event;
4166
4411
  }
4167
4412
 
4168
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas) */
4413
+ /**
4414
+ * When using the canvas element or the Canvas API, rendering, animation, and user interaction usually happen on the main execution thread of a web application.
4415
+ *
4416
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas)
4417
+ */
4169
4418
  interface OffscreenCanvas extends EventTarget {
4170
4419
  /**
4171
4420
  * These attributes return the dimensions of the OffscreenCanvas object's bitmap.
@@ -4226,7 +4475,11 @@ declare var OffscreenCanvas: {
4226
4475
  new(width: number, height: number): OffscreenCanvas;
4227
4476
  };
4228
4477
 
4229
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvasRenderingContext2D) */
4478
+ /**
4479
+ * The **`OffscreenCanvasRenderingContext2D`** interface is a CanvasRenderingContext2D rendering context for drawing to the bitmap of an `OffscreenCanvas` object.
4480
+ *
4481
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvasRenderingContext2D)
4482
+ */
4230
4483
  interface OffscreenCanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasShadowStyles, CanvasState, CanvasText, CanvasTextDrawingStyles, CanvasTransform {
4231
4484
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/canvas) */
4232
4485
  readonly canvas: OffscreenCanvas;
@@ -4238,7 +4491,7 @@ declare var OffscreenCanvasRenderingContext2D: {
4238
4491
  };
4239
4492
 
4240
4493
  /**
4241
- * This Canvas 2D API interface is used to declare a path that can then be used on a CanvasRenderingContext2D object. The path methods of the CanvasRenderingContext2D interface are also present on this interface, which gives you the convenience of being able to retain and replay your path whenever desired.
4494
+ * The **`Path2D`** interface of the Canvas 2D API is used to declare a path that can then be used on a CanvasRenderingContext2D object.
4242
4495
  *
4243
4496
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Path2D)
4244
4497
  */
@@ -4261,7 +4514,7 @@ interface PerformanceEventMap {
4261
4514
  }
4262
4515
 
4263
4516
  /**
4264
- * Provides access to performance-related information for the current page. It's part of the High Resolution Time API, but is enhanced by the Performance Timeline API, the Navigation Timing API, the User Timing API, and the Resource Timing API.
4517
+ * The **`Performance`** interface provides access to performance-related information for the current page.
4265
4518
  *
4266
4519
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance)
4267
4520
  */
@@ -4304,7 +4557,7 @@ declare var Performance: {
4304
4557
  };
4305
4558
 
4306
4559
  /**
4307
- * Encapsulates a single performance metric that is part of the performance timeline. A performance entry can be directly created by making a performance mark or measure (for example by calling the mark() method) at an explicit point in an application. Performance entries are also created in indirect ways such as loading a resource (such as an image).
4560
+ * The **`PerformanceEntry`** object encapsulates a single performance metric that is part of the browser's performance timeline.
4308
4561
  *
4309
4562
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEntry)
4310
4563
  */
@@ -4327,7 +4580,7 @@ declare var PerformanceEntry: {
4327
4580
  };
4328
4581
 
4329
4582
  /**
4330
- * PerformanceMark is an abstract interface for PerformanceEntry objects with an entryType of "mark". Entries of this type are created by calling performance.mark() to add a named DOMHighResTimeStamp (the mark) to the browser's performance timeline.
4583
+ * **`PerformanceMark`** is an interface for PerformanceEntry objects with an PerformanceEntry.entryType of `'mark'`.
4331
4584
  *
4332
4585
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceMark)
4333
4586
  */
@@ -4342,7 +4595,7 @@ declare var PerformanceMark: {
4342
4595
  };
4343
4596
 
4344
4597
  /**
4345
- * PerformanceMeasure is an abstract interface for PerformanceEntry objects with an entryType of "measure". Entries of this type are created by calling performance.measure() to add a named DOMHighResTimeStamp (the measure) between two marks to the browser's performance timeline.
4598
+ * **`PerformanceMeasure`** is an _abstract_ interface for PerformanceEntry objects with an PerformanceEntry.entryType of `'measure'`.
4346
4599
  *
4347
4600
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceMeasure)
4348
4601
  */
@@ -4356,7 +4609,11 @@ declare var PerformanceMeasure: {
4356
4609
  new(): PerformanceMeasure;
4357
4610
  };
4358
4611
 
4359
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserver) */
4612
+ /**
4613
+ * The **`PerformanceObserver`** interface is used to observe performance measurement events and be notified of new PerformanceEntry as they are recorded in the browser's _performance timeline_.
4614
+ *
4615
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserver)
4616
+ */
4360
4617
  interface PerformanceObserver {
4361
4618
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserver/disconnect) */
4362
4619
  disconnect(): void;
@@ -4373,7 +4630,11 @@ declare var PerformanceObserver: {
4373
4630
  readonly supportedEntryTypes: ReadonlyArray<string>;
4374
4631
  };
4375
4632
 
4376
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserverEntryList) */
4633
+ /**
4634
+ * The **`PerformanceObserverEntryList`** interface is a list of PerformanceEntry that were explicitly observed via the PerformanceObserver.observe method.
4635
+ *
4636
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserverEntryList)
4637
+ */
4377
4638
  interface PerformanceObserverEntryList {
4378
4639
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceObserverEntryList/getEntries) */
4379
4640
  getEntries(): PerformanceEntryList;
@@ -4389,7 +4650,7 @@ declare var PerformanceObserverEntryList: {
4389
4650
  };
4390
4651
 
4391
4652
  /**
4392
- * Enables retrieval and analysis of detailed network timing data regarding the loading of an application's resources. An application can use the timing metrics to determine, for example, the length of time it takes to fetch a specific resource, such as an XMLHttpRequest, <SVG>, image, or script.
4653
+ * The **`PerformanceResourceTiming`** interface enables retrieval and analysis of detailed network timing data regarding the loading of an application's resources.
4393
4654
  *
4394
4655
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming)
4395
4656
  */
@@ -4441,7 +4702,11 @@ declare var PerformanceResourceTiming: {
4441
4702
  new(): PerformanceResourceTiming;
4442
4703
  };
4443
4704
 
4444
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceServerTiming) */
4705
+ /**
4706
+ * The **`PerformanceServerTiming`** interface surfaces server metrics that are sent with the response in the Server-Timing HTTP header.
4707
+ *
4708
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceServerTiming)
4709
+ */
4445
4710
  interface PerformanceServerTiming {
4446
4711
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceServerTiming/description) */
4447
4712
  readonly description: string;
@@ -4462,7 +4727,11 @@ interface PermissionStatusEventMap {
4462
4727
  "change": Event;
4463
4728
  }
4464
4729
 
4465
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PermissionStatus) */
4730
+ /**
4731
+ * The **`PermissionStatus`** interface of the Permissions API provides the state of an object and an event handler for monitoring changes to said state.
4732
+ *
4733
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PermissionStatus)
4734
+ */
4466
4735
  interface PermissionStatus extends EventTarget {
4467
4736
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PermissionStatus/name) */
4468
4737
  readonly name: string;
@@ -4481,7 +4750,11 @@ declare var PermissionStatus: {
4481
4750
  new(): PermissionStatus;
4482
4751
  };
4483
4752
 
4484
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Permissions) */
4753
+ /**
4754
+ * The **`Permissions`** interface of the Permissions API provides the core Permission API functionality, such as methods for querying and revoking permissions - Permissions.query - : Returns the user permission status for a given API.
4755
+ *
4756
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Permissions)
4757
+ */
4485
4758
  interface Permissions {
4486
4759
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Permissions/query) */
4487
4760
  query(permissionDesc: PermissionDescriptor): Promise<PermissionStatus>;
@@ -4493,7 +4766,7 @@ declare var Permissions: {
4493
4766
  };
4494
4767
 
4495
4768
  /**
4496
- * Events measuring progress of an underlying process, like an HTTP request (for an XMLHttpRequest, or the loading of the underlying resource of an <img>, <audio>, <video>, <style> or <link>).
4769
+ * The **`ProgressEvent`** interface represents events measuring progress of an underlying process, like an HTTP request (for an `XMLHttpRequest`, or the loading of the underlying resource of an img, audio, video, style or link).
4497
4770
  *
4498
4771
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent)
4499
4772
  */
@@ -4512,7 +4785,11 @@ declare var ProgressEvent: {
4512
4785
  new(type: string, eventInitDict?: ProgressEventInit): ProgressEvent;
4513
4786
  };
4514
4787
 
4515
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent) */
4788
+ /**
4789
+ * The **`PromiseRejectionEvent`** interface represents events which are sent to the global script context when JavaScript Promises are rejected.
4790
+ *
4791
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent)
4792
+ */
4516
4793
  interface PromiseRejectionEvent extends Event {
4517
4794
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise) */
4518
4795
  readonly promise: Promise<any>;
@@ -4526,7 +4803,7 @@ declare var PromiseRejectionEvent: {
4526
4803
  };
4527
4804
 
4528
4805
  /**
4529
- * This Push API interface represents a push message that has been received. This event is sent to the global scope of a ServiceWorker. It contains the information sent from an application server to a PushSubscription.
4806
+ * The **`PushEvent`** interface of the Push API represents a push message that has been received.
4530
4807
  * Available only in secure contexts.
4531
4808
  *
4532
4809
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushEvent)
@@ -4542,7 +4819,7 @@ declare var PushEvent: {
4542
4819
  };
4543
4820
 
4544
4821
  /**
4545
- * This Push API interface provides a way to receive notifications from third-party servers as well as request URLs for push notifications.
4822
+ * The **`PushManager`** interface of the Push API provides a way to receive notifications from third-party servers as well as request URLs for push notifications.
4546
4823
  * Available only in secure contexts.
4547
4824
  *
4548
4825
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushManager)
@@ -4564,7 +4841,7 @@ declare var PushManager: {
4564
4841
  };
4565
4842
 
4566
4843
  /**
4567
- * This Push API interface provides methods which let you retrieve the push data sent by a server in various formats.
4844
+ * The **`PushMessageData`** interface of the Push API provides methods which let you retrieve the push data sent by a server in various formats.
4568
4845
  * Available only in secure contexts.
4569
4846
  *
4570
4847
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushMessageData)
@@ -4588,7 +4865,7 @@ declare var PushMessageData: {
4588
4865
  };
4589
4866
 
4590
4867
  /**
4591
- * This Push API interface provides a subcription's URL endpoint and allows unsubscription from a push service.
4868
+ * The `PushSubscription` interface of the Push API provides a subscription's URL endpoint along with the public key and secrets that should be used for encrypting push messages to this subscription.
4592
4869
  * Available only in secure contexts.
4593
4870
  *
4594
4871
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription)
@@ -4614,6 +4891,7 @@ declare var PushSubscription: {
4614
4891
  };
4615
4892
 
4616
4893
  /**
4894
+ * The **`PushSubscriptionOptions`** interface of the Push API represents the options associated with a push subscription.
4617
4895
  * Available only in secure contexts.
4618
4896
  *
4619
4897
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscriptionOptions)
@@ -4630,7 +4908,11 @@ declare var PushSubscriptionOptions: {
4630
4908
  new(): PushSubscriptionOptions;
4631
4909
  };
4632
4910
 
4633
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController) */
4911
+ /**
4912
+ * The **`ReadableByteStreamController`** interface of the Streams API represents a controller for a readable byte stream.
4913
+ *
4914
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController)
4915
+ */
4634
4916
  interface ReadableByteStreamController {
4635
4917
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/byobRequest) */
4636
4918
  readonly byobRequest: ReadableStreamBYOBRequest | null;
@@ -4650,7 +4932,7 @@ declare var ReadableByteStreamController: {
4650
4932
  };
4651
4933
 
4652
4934
  /**
4653
- * This Streams API interface represents a readable stream of byte data. The Fetch API offers a concrete instance of a ReadableStream through the body property of a Response object.
4935
+ * The `ReadableStream` interface of the Streams API represents a readable stream of byte data.
4654
4936
  *
4655
4937
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream)
4656
4938
  */
@@ -4678,7 +4960,11 @@ declare var ReadableStream: {
4678
4960
  new<R = any>(underlyingSource?: UnderlyingSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
4679
4961
  };
4680
4962
 
4681
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader) */
4963
+ /**
4964
+ * The `ReadableStreamBYOBReader` interface of the Streams API defines a reader for a ReadableStream that supports zero-copy reading from an underlying byte source.
4965
+ *
4966
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader)
4967
+ */
4682
4968
  interface ReadableStreamBYOBReader extends ReadableStreamGenericReader {
4683
4969
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader/read) */
4684
4970
  read<T extends ArrayBufferView>(view: T): Promise<ReadableStreamReadResult<T>>;
@@ -4691,7 +4977,11 @@ declare var ReadableStreamBYOBReader: {
4691
4977
  new(stream: ReadableStream<Uint8Array>): ReadableStreamBYOBReader;
4692
4978
  };
4693
4979
 
4694
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest) */
4980
+ /**
4981
+ * The **`ReadableStreamBYOBRequest`** interface of the Streams API represents a 'pull request' for data from an underlying source that will made as a zero-copy transfer to a consumer (bypassing the stream's internal queues).
4982
+ *
4983
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest)
4984
+ */
4695
4985
  interface ReadableStreamBYOBRequest {
4696
4986
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest/view) */
4697
4987
  readonly view: ArrayBufferView | null;
@@ -4706,7 +4996,11 @@ declare var ReadableStreamBYOBRequest: {
4706
4996
  new(): ReadableStreamBYOBRequest;
4707
4997
  };
4708
4998
 
4709
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController) */
4999
+ /**
5000
+ * The **`ReadableStreamDefaultController`** interface of the Streams API represents a controller allowing control of a ReadableStream's state and internal queue.
5001
+ *
5002
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController)
5003
+ */
4710
5004
  interface ReadableStreamDefaultController<R = any> {
4711
5005
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/desiredSize) */
4712
5006
  readonly desiredSize: number | null;
@@ -4723,7 +5017,11 @@ declare var ReadableStreamDefaultController: {
4723
5017
  new(): ReadableStreamDefaultController;
4724
5018
  };
4725
5019
 
4726
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultReader) */
5020
+ /**
5021
+ * The **`ReadableStreamDefaultReader`** interface of the Streams API represents a default reader that can be used to read stream data supplied from a network (such as a fetch request).
5022
+ *
5023
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultReader)
5024
+ */
4727
5025
  interface ReadableStreamDefaultReader<R = any> extends ReadableStreamGenericReader {
4728
5026
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultReader/read) */
4729
5027
  read(): Promise<ReadableStreamReadResult<R>>;
@@ -4743,7 +5041,11 @@ interface ReadableStreamGenericReader {
4743
5041
  cancel(reason?: any): Promise<void>;
4744
5042
  }
4745
5043
 
4746
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Report) */
5044
+ /**
5045
+ * The `Report` interface of the Reporting API represents a single report.
5046
+ *
5047
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Report)
5048
+ */
4747
5049
  interface Report {
4748
5050
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Report/body) */
4749
5051
  readonly body: ReportBody | null;
@@ -4759,7 +5061,11 @@ declare var Report: {
4759
5061
  new(): Report;
4760
5062
  };
4761
5063
 
4762
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportBody) */
5064
+ /**
5065
+ * The **`ReportBody`** interface of the Reporting API represents the body of a report.
5066
+ *
5067
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportBody)
5068
+ */
4763
5069
  interface ReportBody {
4764
5070
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportBody/toJSON) */
4765
5071
  toJSON(): any;
@@ -4770,7 +5076,11 @@ declare var ReportBody: {
4770
5076
  new(): ReportBody;
4771
5077
  };
4772
5078
 
4773
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver) */
5079
+ /**
5080
+ * The `ReportingObserver` interface of the Reporting API allows you to collect and access reports.
5081
+ *
5082
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver)
5083
+ */
4774
5084
  interface ReportingObserver {
4775
5085
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver/disconnect) */
4776
5086
  disconnect(): void;
@@ -4786,7 +5096,7 @@ declare var ReportingObserver: {
4786
5096
  };
4787
5097
 
4788
5098
  /**
4789
- * This Fetch API interface represents a resource request.
5099
+ * The **`Request`** interface of the Fetch API represents a resource request.
4790
5100
  *
4791
5101
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request)
4792
5102
  */
@@ -4879,7 +5189,7 @@ declare var Request: {
4879
5189
  };
4880
5190
 
4881
5191
  /**
4882
- * This Fetch API interface represents the response to a request.
5192
+ * The **`Response`** interface of the Fetch API represents the response to a request.
4883
5193
  *
4884
5194
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response)
4885
5195
  */
@@ -4914,7 +5224,7 @@ declare var Response: {
4914
5224
  };
4915
5225
 
4916
5226
  /**
4917
- * Inherits from Event, and represents the event object of an event sent on a document or worker when its content security policy is violated.
5227
+ * The **`SecurityPolicyViolationEvent`** interface inherits from Event, and represents the event object of a `securitypolicyviolation` event sent on an Element/securitypolicyviolation_event, Document/securitypolicyviolation_event, or WorkerGlobalScope/securitypolicyviolation_event when its Content Security Policy (CSP) is violated.
4918
5228
  *
4919
5229
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SecurityPolicyViolationEvent)
4920
5230
  */
@@ -4955,7 +5265,7 @@ interface ServiceWorkerEventMap extends AbstractWorkerEventMap {
4955
5265
  }
4956
5266
 
4957
5267
  /**
4958
- * This ServiceWorker API interface provides a reference to a service worker. Multiple browsing contexts (e.g. pages, workers, etc.) can be associated with the same service worker, each through a unique ServiceWorker object.
5268
+ * The **`ServiceWorker`** interface of the Service Worker API provides a reference to a service worker.
4959
5269
  * Available only in secure contexts.
4960
5270
  *
4961
5271
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorker)
@@ -4988,7 +5298,7 @@ interface ServiceWorkerContainerEventMap {
4988
5298
  }
4989
5299
 
4990
5300
  /**
4991
- * The ServiceWorkerContainer interface of the ServiceWorker API provides an object representing the service worker as an overall unit in the network ecosystem, including facilities to register, unregister and update service workers, and access the state of service workers and their registrations.
5301
+ * The **`ServiceWorkerContainer`** interface of the Service Worker API provides an object representing the service worker as an overall unit in the network ecosystem, including facilities to register, unregister and update service workers, and access the state of service workers and their registrations.
4992
5302
  * Available only in secure contexts.
4993
5303
  *
4994
5304
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer)
@@ -5036,7 +5346,7 @@ interface ServiceWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
5036
5346
  }
5037
5347
 
5038
5348
  /**
5039
- * This ServiceWorker API interface represents the global execution context of a service worker.
5349
+ * The **`ServiceWorkerGlobalScope`** interface of the Service Worker API represents the global execution context of a service worker.
5040
5350
  * Available only in secure contexts.
5041
5351
  *
5042
5352
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope)
@@ -5086,7 +5396,7 @@ interface ServiceWorkerRegistrationEventMap {
5086
5396
  }
5087
5397
 
5088
5398
  /**
5089
- * This ServiceWorker API interface represents the service worker registration. You register a service worker to control one or more pages that share the same origin.
5399
+ * The **`ServiceWorkerRegistration`** interface of the Service Worker API represents the service worker registration.
5090
5400
  * Available only in secure contexts.
5091
5401
  *
5092
5402
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration)
@@ -5128,6 +5438,7 @@ declare var ServiceWorkerRegistration: {
5128
5438
  };
5129
5439
 
5130
5440
  /**
5441
+ * The **`StorageManager`** interface of the Storage API provides an interface for managing persistence permissions and estimating available storage.
5131
5442
  * Available only in secure contexts.
5132
5443
  *
5133
5444
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StorageManager)
@@ -5146,7 +5457,11 @@ declare var StorageManager: {
5146
5457
  new(): StorageManager;
5147
5458
  };
5148
5459
 
5149
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly) */
5460
+ /**
5461
+ * The **`StylePropertyMapReadOnly`** interface of the CSS Typed Object Model API provides a read-only representation of a CSS declaration block that is an alternative to CSSStyleDeclaration.
5462
+ *
5463
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly)
5464
+ */
5150
5465
  interface StylePropertyMapReadOnly {
5151
5466
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/size) */
5152
5467
  readonly size: number;
@@ -5165,7 +5480,7 @@ declare var StylePropertyMapReadOnly: {
5165
5480
  };
5166
5481
 
5167
5482
  /**
5168
- * This Web Crypto API interface provides a number of low-level cryptographic functions. It is accessed via the Crypto.subtle properties available in a window context (via Window.crypto).
5483
+ * The **`SubtleCrypto`** interface of the Web Crypto API provides a number of low-level cryptographic functions.
5169
5484
  * Available only in secure contexts.
5170
5485
  *
5171
5486
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto)
@@ -5209,7 +5524,7 @@ declare var SubtleCrypto: {
5209
5524
  };
5210
5525
 
5211
5526
  /**
5212
- * A decoder for a specific method, that is a specific character encoding, like utf-8, iso-8859-2, koi8, cp1261, gbk, etc. A decoder takes a stream of bytes as input and emits a stream of code points. For a more scalable, non-native library, see StringView – a C-like representation of strings based on typed arrays.
5527
+ * The **`TextDecoder`** interface represents a decoder for a specific text encoding, such as `UTF-8`, `ISO-8859-2`, `KOI8-R`, `GBK`, etc.
5213
5528
  *
5214
5529
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoder)
5215
5530
  */
@@ -5258,7 +5573,11 @@ interface TextDecoderCommon {
5258
5573
  readonly ignoreBOM: boolean;
5259
5574
  }
5260
5575
 
5261
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoderStream) */
5576
+ /**
5577
+ * The **`TextDecoderStream`** interface of the Encoding API converts a stream of text in a binary encoding, such as UTF-8 etc., to a stream of strings.
5578
+ *
5579
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoderStream)
5580
+ */
5262
5581
  interface TextDecoderStream extends GenericTransformStream, TextDecoderCommon {
5263
5582
  readonly readable: ReadableStream<string>;
5264
5583
  readonly writable: WritableStream<BufferSource>;
@@ -5270,7 +5589,7 @@ declare var TextDecoderStream: {
5270
5589
  };
5271
5590
 
5272
5591
  /**
5273
- * TextEncoder takes a stream of code points as input and emits a stream of bytes. For a more scalable, non-native library, see StringView – a C-like representation of strings based on typed arrays.
5592
+ * The **`TextEncoder`** interface takes a stream of code points as input and emits a stream of UTF-8 bytes.
5274
5593
  *
5275
5594
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder)
5276
5595
  */
@@ -5303,7 +5622,11 @@ interface TextEncoderCommon {
5303
5622
  readonly encoding: string;
5304
5623
  }
5305
5624
 
5306
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoderStream) */
5625
+ /**
5626
+ * The **`TextEncoderStream`** interface of the Encoding API converts a stream of strings into bytes in the UTF-8 encoding.
5627
+ *
5628
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoderStream)
5629
+ */
5307
5630
  interface TextEncoderStream extends GenericTransformStream, TextEncoderCommon {
5308
5631
  readonly readable: ReadableStream<Uint8Array>;
5309
5632
  readonly writable: WritableStream<string>;
@@ -5315,7 +5638,7 @@ declare var TextEncoderStream: {
5315
5638
  };
5316
5639
 
5317
5640
  /**
5318
- * The dimensions of a piece of text in the canvas, as created by the CanvasRenderingContext2D.measureText() method.
5641
+ * The **`TextMetrics`** interface represents the dimensions of a piece of text in the canvas; a `TextMetrics` instance can be retrieved using the CanvasRenderingContext2D.measureText() method.
5319
5642
  *
5320
5643
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics)
5321
5644
  */
@@ -5399,7 +5722,11 @@ declare var TextMetrics: {
5399
5722
  new(): TextMetrics;
5400
5723
  };
5401
5724
 
5402
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStream) */
5725
+ /**
5726
+ * The **`TransformStream`** interface of the Streams API represents a concrete implementation of the pipe chain _transform stream_ concept.
5727
+ *
5728
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStream)
5729
+ */
5403
5730
  interface TransformStream<I = any, O = any> {
5404
5731
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStream/readable) */
5405
5732
  readonly readable: ReadableStream<O>;
@@ -5412,7 +5739,11 @@ declare var TransformStream: {
5412
5739
  new<I = any, O = any>(transformer?: Transformer<I, O>, writableStrategy?: QueuingStrategy<I>, readableStrategy?: QueuingStrategy<O>): TransformStream<I, O>;
5413
5740
  };
5414
5741
 
5415
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController) */
5742
+ /**
5743
+ * The **`TransformStreamDefaultController`** interface of the Streams API provides methods to manipulate the associated ReadableStream and WritableStream.
5744
+ *
5745
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController)
5746
+ */
5416
5747
  interface TransformStreamDefaultController<O = any> {
5417
5748
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/desiredSize) */
5418
5749
  readonly desiredSize: number | null;
@@ -5430,7 +5761,7 @@ declare var TransformStreamDefaultController: {
5430
5761
  };
5431
5762
 
5432
5763
  /**
5433
- * The URL interface represents an object providing static methods used for creating object URLs.
5764
+ * The **`URL`** interface is used to parse, construct, normalize, and encode URL.
5434
5765
  *
5435
5766
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL)
5436
5767
  */
@@ -5473,7 +5804,11 @@ declare var URL: {
5473
5804
  parse(url: string | URL, base?: string | URL): URL | null;
5474
5805
  };
5475
5806
 
5476
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams) */
5807
+ /**
5808
+ * The **`URLSearchParams`** interface defines utility methods to work with the query string of a URL.
5809
+ *
5810
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams)
5811
+ */
5477
5812
  interface URLSearchParams {
5478
5813
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/size) */
5479
5814
  readonly size: number;
@@ -5525,14 +5860,22 @@ declare var URLSearchParams: {
5525
5860
  new(init?: string[][] | Record<string, string> | string | URLSearchParams): URLSearchParams;
5526
5861
  };
5527
5862
 
5528
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_color_buffer_float) */
5863
+ /**
5864
+ * The **`WEBGL_color_buffer_float`** extension is part of the WebGL API and adds the ability to render to 32-bit floating-point color buffers.
5865
+ *
5866
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_color_buffer_float)
5867
+ */
5529
5868
  interface WEBGL_color_buffer_float {
5530
5869
  readonly RGBA32F_EXT: 0x8814;
5531
5870
  readonly FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT: 0x8211;
5532
5871
  readonly UNSIGNED_NORMALIZED_EXT: 0x8C17;
5533
5872
  }
5534
5873
 
5535
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_astc) */
5874
+ /**
5875
+ * The **`WEBGL_compressed_texture_astc`** extension is part of the WebGL API and exposes Adaptive Scalable Texture Compression (ASTC) compressed texture formats to WebGL.
5876
+ *
5877
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_astc)
5878
+ */
5536
5879
  interface WEBGL_compressed_texture_astc {
5537
5880
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_astc/getSupportedProfiles) */
5538
5881
  getSupportedProfiles(): string[];
@@ -5566,7 +5909,11 @@ interface WEBGL_compressed_texture_astc {
5566
5909
  readonly COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR: 0x93DD;
5567
5910
  }
5568
5911
 
5569
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_etc) */
5912
+ /**
5913
+ * The **`WEBGL_compressed_texture_etc`** extension is part of the WebGL API and exposes 10 ETC/EAC compressed texture formats.
5914
+ *
5915
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_etc)
5916
+ */
5570
5917
  interface WEBGL_compressed_texture_etc {
5571
5918
  readonly COMPRESSED_R11_EAC: 0x9270;
5572
5919
  readonly COMPRESSED_SIGNED_R11_EAC: 0x9271;
@@ -5580,12 +5927,20 @@ interface WEBGL_compressed_texture_etc {
5580
5927
  readonly COMPRESSED_SRGB8_ALPHA8_ETC2_EAC: 0x9279;
5581
5928
  }
5582
5929
 
5583
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_etc1) */
5930
+ /**
5931
+ * The **`WEBGL_compressed_texture_etc1`** extension is part of the WebGL API and exposes the ETC1 compressed texture format.
5932
+ *
5933
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_etc1)
5934
+ */
5584
5935
  interface WEBGL_compressed_texture_etc1 {
5585
5936
  readonly COMPRESSED_RGB_ETC1_WEBGL: 0x8D64;
5586
5937
  }
5587
5938
 
5588
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_pvrtc) */
5939
+ /**
5940
+ * The **`WEBGL_compressed_texture_pvrtc`** extension is part of the WebGL API and exposes four PVRTC compressed texture formats.
5941
+ *
5942
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_pvrtc)
5943
+ */
5589
5944
  interface WEBGL_compressed_texture_pvrtc {
5590
5945
  readonly COMPRESSED_RGB_PVRTC_4BPPV1_IMG: 0x8C00;
5591
5946
  readonly COMPRESSED_RGB_PVRTC_2BPPV1_IMG: 0x8C01;
@@ -5594,7 +5949,7 @@ interface WEBGL_compressed_texture_pvrtc {
5594
5949
  }
5595
5950
 
5596
5951
  /**
5597
- * The WEBGL_compressed_texture_s3tc extension is part of the WebGL API and exposes four S3TC compressed texture formats.
5952
+ * The **`WEBGL_compressed_texture_s3tc`** extension is part of the WebGL API and exposes four S3TC compressed texture formats.
5598
5953
  *
5599
5954
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_s3tc)
5600
5955
  */
@@ -5605,7 +5960,11 @@ interface WEBGL_compressed_texture_s3tc {
5605
5960
  readonly COMPRESSED_RGBA_S3TC_DXT5_EXT: 0x83F3;
5606
5961
  }
5607
5962
 
5608
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_s3tc_srgb) */
5963
+ /**
5964
+ * The **`WEBGL_compressed_texture_s3tc_srgb`** extension is part of the WebGL API and exposes four S3TC compressed texture formats for the sRGB colorspace.
5965
+ *
5966
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_compressed_texture_s3tc_srgb)
5967
+ */
5609
5968
  interface WEBGL_compressed_texture_s3tc_srgb {
5610
5969
  readonly COMPRESSED_SRGB_S3TC_DXT1_EXT: 0x8C4C;
5611
5970
  readonly COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT: 0x8C4D;
@@ -5614,7 +5973,7 @@ interface WEBGL_compressed_texture_s3tc_srgb {
5614
5973
  }
5615
5974
 
5616
5975
  /**
5617
- * The WEBGL_debug_renderer_info extension is part of the WebGL API and exposes two constants with information about the graphics driver for debugging purposes.
5976
+ * The **`WEBGL_debug_renderer_info`** extension is part of the WebGL API and exposes two constants with information about the graphics driver for debugging purposes.
5618
5977
  *
5619
5978
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_debug_renderer_info)
5620
5979
  */
@@ -5623,14 +5982,18 @@ interface WEBGL_debug_renderer_info {
5623
5982
  readonly UNMASKED_RENDERER_WEBGL: 0x9246;
5624
5983
  }
5625
5984
 
5626
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_debug_shaders) */
5985
+ /**
5986
+ * The **`WEBGL_debug_shaders`** extension is part of the WebGL API and exposes a method to debug shaders from privileged contexts.
5987
+ *
5988
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_debug_shaders)
5989
+ */
5627
5990
  interface WEBGL_debug_shaders {
5628
5991
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_debug_shaders/getTranslatedShaderSource) */
5629
5992
  getTranslatedShaderSource(shader: WebGLShader): string;
5630
5993
  }
5631
5994
 
5632
5995
  /**
5633
- * The WEBGL_depth_texture extension is part of the WebGL API and defines 2D depth and depth-stencil textures.
5996
+ * The **`WEBGL_depth_texture`** extension is part of the WebGL API and defines 2D depth and depth-stencil textures.
5634
5997
  *
5635
5998
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_depth_texture)
5636
5999
  */
@@ -5638,7 +6001,11 @@ interface WEBGL_depth_texture {
5638
6001
  readonly UNSIGNED_INT_24_8_WEBGL: 0x84FA;
5639
6002
  }
5640
6003
 
5641
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_draw_buffers) */
6004
+ /**
6005
+ * The **`WEBGL_draw_buffers`** extension is part of the WebGL API and enables a fragment shader to write to several textures, which is useful for deferred shading, for example.
6006
+ *
6007
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_draw_buffers)
6008
+ */
5642
6009
  interface WEBGL_draw_buffers {
5643
6010
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_draw_buffers/drawBuffersWEBGL) */
5644
6011
  drawBuffersWEBGL(buffers: GLenum[]): void;
@@ -5678,7 +6045,11 @@ interface WEBGL_draw_buffers {
5678
6045
  readonly MAX_DRAW_BUFFERS_WEBGL: 0x8824;
5679
6046
  }
5680
6047
 
5681
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_lose_context) */
6048
+ /**
6049
+ * The **WEBGL_lose_context** extension is part of the WebGL API and exposes functions to simulate losing and restoring a WebGLRenderingContext.
6050
+ *
6051
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_lose_context)
6052
+ */
5682
6053
  interface WEBGL_lose_context {
5683
6054
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_lose_context/loseContext) */
5684
6055
  loseContext(): void;
@@ -5686,7 +6057,11 @@ interface WEBGL_lose_context {
5686
6057
  restoreContext(): void;
5687
6058
  }
5688
6059
 
5689
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw) */
6060
+ /**
6061
+ * The **`WEBGL_multi_draw`** extension is part of the WebGL API and allows to render more than one primitive with a single function call.
6062
+ *
6063
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw)
6064
+ */
5690
6065
  interface WEBGL_multi_draw {
5691
6066
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WEBGL_multi_draw/multiDrawArraysInstancedWEBGL) */
5692
6067
  multiDrawArraysInstancedWEBGL(mode: GLenum, firstsList: Int32Array | GLint[], firstsOffset: number, countsList: Int32Array | GLsizei[], countsOffset: number, instanceCountsList: Int32Array | GLsizei[], instanceCountsOffset: number, drawcount: GLsizei): void;
@@ -5698,7 +6073,11 @@ interface WEBGL_multi_draw {
5698
6073
  multiDrawElementsWEBGL(mode: GLenum, countsList: Int32Array | GLsizei[], countsOffset: number, type: GLenum, offsetsList: Int32Array | GLsizei[], offsetsOffset: number, drawcount: GLsizei): void;
5699
6074
  }
5700
6075
 
5701
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext) */
6076
+ /**
6077
+ * The **WebGL2RenderingContext** interface provides the OpenGL ES 3.0 rendering context for the drawing surface of an HTML canvas element.
6078
+ *
6079
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext)
6080
+ */
5702
6081
  interface WebGL2RenderingContext extends WebGL2RenderingContextBase, WebGL2RenderingContextOverloads, WebGLRenderingContextBase {
5703
6082
  }
5704
6083
 
@@ -6769,7 +7148,7 @@ interface WebGL2RenderingContextOverloads {
6769
7148
  }
6770
7149
 
6771
7150
  /**
6772
- * Part of the WebGL API and represents the information returned by calling the WebGLRenderingContext.getActiveAttrib() and WebGLRenderingContext.getActiveUniform() methods.
7151
+ * The **WebGLActiveInfo** interface is part of the WebGL API and represents the information returned by calling the WebGLRenderingContext.getActiveAttrib() and WebGLRenderingContext.getActiveUniform() methods.
6773
7152
  *
6774
7153
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLActiveInfo)
6775
7154
  */
@@ -6788,7 +7167,7 @@ declare var WebGLActiveInfo: {
6788
7167
  };
6789
7168
 
6790
7169
  /**
6791
- * Part of the WebGL API and represents an opaque buffer object storing data such as vertices or colors.
7170
+ * The **WebGLBuffer** interface is part of the WebGL API and represents an opaque buffer object storing data such as vertices or colors.
6792
7171
  *
6793
7172
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLBuffer)
6794
7173
  */
@@ -6801,7 +7180,7 @@ declare var WebGLBuffer: {
6801
7180
  };
6802
7181
 
6803
7182
  /**
6804
- * The WebContextEvent interface is part of the WebGL API and is an interface for an event that is generated in response to a status change to the WebGL rendering context.
7183
+ * The **WebGLContextEvent** interface is part of the WebGL API and is an interface for an event that is generated in response to a status change to the WebGL rendering context.
6805
7184
  *
6806
7185
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLContextEvent)
6807
7186
  */
@@ -6816,7 +7195,7 @@ declare var WebGLContextEvent: {
6816
7195
  };
6817
7196
 
6818
7197
  /**
6819
- * Part of the WebGL API and represents a collection of buffers that serve as a rendering destination.
7198
+ * The **WebGLFramebuffer** interface is part of the WebGL API and represents a collection of buffers that serve as a rendering destination.
6820
7199
  *
6821
7200
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLFramebuffer)
6822
7201
  */
@@ -6829,7 +7208,7 @@ declare var WebGLFramebuffer: {
6829
7208
  };
6830
7209
 
6831
7210
  /**
6832
- * The WebGLProgram is part of the WebGL API and is a combination of two compiled WebGLShaders consisting of a vertex shader and a fragment shader (both written in GLSL).
7211
+ * The **`WebGLProgram`** is part of the WebGL API and is a combination of two compiled WebGLShaders consisting of a vertex shader and a fragment shader (both written in GLSL).
6833
7212
  *
6834
7213
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLProgram)
6835
7214
  */
@@ -6841,7 +7220,11 @@ declare var WebGLProgram: {
6841
7220
  new(): WebGLProgram;
6842
7221
  };
6843
7222
 
6844
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLQuery) */
7223
+ /**
7224
+ * The **`WebGLQuery`** interface is part of the WebGL 2 API and provides ways to asynchronously query for information.
7225
+ *
7226
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLQuery)
7227
+ */
6845
7228
  interface WebGLQuery {
6846
7229
  }
6847
7230
 
@@ -6851,7 +7234,7 @@ declare var WebGLQuery: {
6851
7234
  };
6852
7235
 
6853
7236
  /**
6854
- * Part of the WebGL API and represents a buffer that can contain an image, or can be source or target of an rendering operation.
7237
+ * The **WebGLRenderbuffer** interface is part of the WebGL API and represents a buffer that can contain an image, or that can be a source or target of a rendering operation.
6855
7238
  *
6856
7239
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderbuffer)
6857
7240
  */
@@ -6864,7 +7247,7 @@ declare var WebGLRenderbuffer: {
6864
7247
  };
6865
7248
 
6866
7249
  /**
6867
- * Provides an interface to the OpenGL ES 2.0 graphics rendering context for the drawing surface of an HTML <canvas> element.
7250
+ * The **`WebGLRenderingContext`** interface provides an interface to the OpenGL ES 2.0 graphics rendering context for the drawing surface of an HTML canvas element.
6868
7251
  *
6869
7252
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext)
6870
7253
  */
@@ -7793,7 +8176,11 @@ interface WebGLRenderingContextOverloads {
7793
8176
  uniformMatrix4fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Float32List): void;
7794
8177
  }
7795
8178
 
7796
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLSampler) */
8179
+ /**
8180
+ * The **`WebGLSampler`** interface is part of the WebGL 2 API and stores sampling parameters for WebGLTexture access inside of a shader.
8181
+ *
8182
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLSampler)
8183
+ */
7797
8184
  interface WebGLSampler {
7798
8185
  }
7799
8186
 
@@ -7803,7 +8190,7 @@ declare var WebGLSampler: {
7803
8190
  };
7804
8191
 
7805
8192
  /**
7806
- * The WebGLShader is part of the WebGL API and can either be a vertex or a fragment shader. A WebGLProgram requires both types of shaders.
8193
+ * The **WebGLShader** is part of the WebGL API and can either be a vertex or a fragment shader.
7807
8194
  *
7808
8195
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLShader)
7809
8196
  */
@@ -7816,7 +8203,7 @@ declare var WebGLShader: {
7816
8203
  };
7817
8204
 
7818
8205
  /**
7819
- * Part of the WebGL API and represents the information returned by calling the WebGLRenderingContext.getShaderPrecisionFormat() method.
8206
+ * The **WebGLShaderPrecisionFormat** interface is part of the WebGL API and represents the information returned by calling the WebGLRenderingContext.getShaderPrecisionFormat() method.
7820
8207
  *
7821
8208
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLShaderPrecisionFormat)
7822
8209
  */
@@ -7834,7 +8221,11 @@ declare var WebGLShaderPrecisionFormat: {
7834
8221
  new(): WebGLShaderPrecisionFormat;
7835
8222
  };
7836
8223
 
7837
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLSync) */
8224
+ /**
8225
+ * The **`WebGLSync`** interface is part of the WebGL 2 API and is used to synchronize activities between the GPU and the application.
8226
+ *
8227
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLSync)
8228
+ */
7838
8229
  interface WebGLSync {
7839
8230
  }
7840
8231
 
@@ -7844,7 +8235,7 @@ declare var WebGLSync: {
7844
8235
  };
7845
8236
 
7846
8237
  /**
7847
- * Part of the WebGL API and represents an opaque texture object providing storage and state for texturing operations.
8238
+ * The **WebGLTexture** interface is part of the WebGL API and represents an opaque texture object providing storage and state for texturing operations.
7848
8239
  *
7849
8240
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLTexture)
7850
8241
  */
@@ -7856,7 +8247,11 @@ declare var WebGLTexture: {
7856
8247
  new(): WebGLTexture;
7857
8248
  };
7858
8249
 
7859
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLTransformFeedback) */
8250
+ /**
8251
+ * The **`WebGLTransformFeedback`** interface is part of the WebGL 2 API and enables transform feedback, which is the process of capturing primitives generated by vertex processing.
8252
+ *
8253
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLTransformFeedback)
8254
+ */
7860
8255
  interface WebGLTransformFeedback {
7861
8256
  }
7862
8257
 
@@ -7866,7 +8261,7 @@ declare var WebGLTransformFeedback: {
7866
8261
  };
7867
8262
 
7868
8263
  /**
7869
- * Part of the WebGL API and represents the location of a uniform variable in a shader program.
8264
+ * The **WebGLUniformLocation** interface is part of the WebGL API and represents the location of a uniform variable in a shader program.
7870
8265
  *
7871
8266
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLUniformLocation)
7872
8267
  */
@@ -7878,7 +8273,11 @@ declare var WebGLUniformLocation: {
7878
8273
  new(): WebGLUniformLocation;
7879
8274
  };
7880
8275
 
7881
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLVertexArrayObject) */
8276
+ /**
8277
+ * The **`WebGLVertexArrayObject`** interface is part of the WebGL 2 API, represents vertex array objects (VAOs) pointing to vertex array data, and provides names for different sets of vertex data.
8278
+ *
8279
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLVertexArrayObject)
8280
+ */
7882
8281
  interface WebGLVertexArrayObject {
7883
8282
  }
7884
8283
 
@@ -7899,7 +8298,7 @@ interface WebSocketEventMap {
7899
8298
  }
7900
8299
 
7901
8300
  /**
7902
- * Provides the API for creating and managing a WebSocket connection to a server, as well as for sending and receiving data on the connection.
8301
+ * The `WebSocket` object provides the API for creating and managing a WebSocket connection to a server, as well as for sending and receiving data on the connection.
7903
8302
  *
7904
8303
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket)
7905
8304
  */
@@ -7984,6 +8383,7 @@ declare var WebSocket: {
7984
8383
  };
7985
8384
 
7986
8385
  /**
8386
+ * The **`WebTransport`** interface of the WebTransport API provides functionality to enable a user agent to connect to an HTTP/3 server, initiate reliable and unreliable transport in either or both directions, and close the connection once it is no longer needed.
7987
8387
  * Available only in secure contexts.
7988
8388
  *
7989
8389
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransport)
@@ -8013,6 +8413,7 @@ declare var WebTransport: {
8013
8413
  };
8014
8414
 
8015
8415
  /**
8416
+ * The **`WebTransportBidirectionalStream`** interface of the WebTransport API represents a bidirectional stream created by a server or a client that can be used for reliable transport.
8016
8417
  * Available only in secure contexts.
8017
8418
  *
8018
8419
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportBidirectionalStream)
@@ -8030,6 +8431,7 @@ declare var WebTransportBidirectionalStream: {
8030
8431
  };
8031
8432
 
8032
8433
  /**
8434
+ * The **`WebTransportDatagramDuplexStream`** interface of the WebTransport API represents a duplex stream that can be used for unreliable transport of datagrams between client and server.
8033
8435
  * Available only in secure contexts.
8034
8436
  *
8035
8437
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportDatagramDuplexStream)
@@ -8057,6 +8459,7 @@ declare var WebTransportDatagramDuplexStream: {
8057
8459
  };
8058
8460
 
8059
8461
  /**
8462
+ * The **`WebTransportError`** interface of the WebTransport API represents an error related to the API, which can arise from server errors, network connection problems, or client-initiated abort operations (for example, arising from a WritableStream.abort() call).
8060
8463
  * Available only in secure contexts.
8061
8464
  *
8062
8465
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebTransportError)
@@ -8074,7 +8477,7 @@ declare var WebTransportError: {
8074
8477
  };
8075
8478
 
8076
8479
  /**
8077
- * This ServiceWorker API interface represents the scope of a service worker client that is a document in a browser context, controlled by an active worker. The service worker client independently selects and uses a service worker for its own loading and sub-resources.
8480
+ * The `WindowClient` interface of the ServiceWorker API represents the scope of a service worker client that is a document in a browsing context, controlled by an active worker.
8078
8481
  *
8079
8482
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WindowClient)
8080
8483
  */
@@ -8148,7 +8551,7 @@ interface WorkerGlobalScopeEventMap {
8148
8551
  }
8149
8552
 
8150
8553
  /**
8151
- * This Web Workers API interface is an interface representing the scope of any worker. Workers have no browsing context; this scope contains the information usually conveyed by Window objects — in this case event handlers, the console or the associated WorkerNavigator object. Each WorkerGlobalScope has its own event loop.
8554
+ * The **`WorkerGlobalScope`** interface of the Web Workers API is an interface representing the scope of any worker.
8152
8555
  *
8153
8556
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerGlobalScope)
8154
8557
  */
@@ -8201,7 +8604,7 @@ declare var WorkerGlobalScope: {
8201
8604
  };
8202
8605
 
8203
8606
  /**
8204
- * The absolute location of the script executed by the Worker. Such an object is initialized for each worker and is available via the WorkerGlobalScope.location property obtained by calling self.location.
8607
+ * The **`WorkerLocation`** interface defines the absolute location of the script executed by the Worker.
8205
8608
  *
8206
8609
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerLocation)
8207
8610
  */
@@ -8233,7 +8636,7 @@ declare var WorkerLocation: {
8233
8636
  };
8234
8637
 
8235
8638
  /**
8236
- * A subset of the Navigator interface allowed to be accessed from a Worker. Such an object is initialized for each worker and is available via the WorkerGlobalScope.navigator property obtained by calling window.self.navigator.
8639
+ * The **`WorkerNavigator`** interface represents a subset of the Navigator interface allowed to be accessed from a Worker.
8237
8640
  *
8238
8641
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WorkerNavigator)
8239
8642
  */
@@ -8256,7 +8659,7 @@ declare var WorkerNavigator: {
8256
8659
  };
8257
8660
 
8258
8661
  /**
8259
- * This Streams API interface provides a standard abstraction for writing streaming data to a destination, known as a sink. This object comes with built-in backpressure and queuing.
8662
+ * The **`WritableStream`** interface of the Streams API provides a standard abstraction for writing streaming data to a destination, known as a sink.
8260
8663
  *
8261
8664
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStream)
8262
8665
  */
@@ -8277,7 +8680,7 @@ declare var WritableStream: {
8277
8680
  };
8278
8681
 
8279
8682
  /**
8280
- * This Streams API interface represents a controller allowing control of a WritableStream's state. When constructing a WritableStream, the underlying sink is given a corresponding WritableStreamDefaultController instance to manipulate.
8683
+ * The **`WritableStreamDefaultController`** interface of the Streams API represents a controller allowing control of a WritableStream's state.
8281
8684
  *
8282
8685
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultController)
8283
8686
  */
@@ -8294,7 +8697,7 @@ declare var WritableStreamDefaultController: {
8294
8697
  };
8295
8698
 
8296
8699
  /**
8297
- * This Streams API interface is the object returned by WritableStream.getWriter() and once created locks the < writer to the WritableStream ensuring that no other streams can write to the underlying sink.
8700
+ * The **`WritableStreamDefaultWriter`** interface of the Streams API is the object returned by WritableStream.getWriter() and once created locks the writer to the `WritableStream` ensuring that no other streams can write to the underlying sink.
8298
8701
  *
8299
8702
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter)
8300
8703
  */
@@ -8479,7 +8882,12 @@ declare namespace WebAssembly {
8479
8882
  function validate(bytes: BufferSource): boolean;
8480
8883
  }
8481
8884
 
8482
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console) */
8885
+ /** The **`console`** object provides access to the debugging console (e.g., the Web console in Firefox). */
8886
+ /**
8887
+ * The **`console`** object provides access to the debugging console (e.g., the Web console in Firefox).
8888
+ *
8889
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console)
8890
+ */
8483
8891
  interface Console {
8484
8892
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/assert_static) */
8485
8893
  assert(condition?: boolean, ...data: any[]): void;