@@ -1231,6 +1231,139 @@ interface ArrayBufferView {
12311231 byteOffset: number;
12321232}
12331233
1234+ interface DataView {
1235+ buffer: ArrayBuffer;
1236+ byteLength: number;
1237+ byteOffset: number;
1238+ /**
1239+ * Gets the Float32 value at the specified byte offset from the start of the view. There is
1240+ * no alignment constraint; multi-byte values may be fetched from any offset.
1241+ * @param byteOffset The place in the buffer at which the value should be retrieved.
1242+ */
1243+ getFloat32(byteOffset: number, littleEndian: boolean): number;
1244+
1245+ /**
1246+ * Gets the Float64 value at the specified byte offset from the start of the view. There is
1247+ * no alignment constraint; multi-byte values may be fetched from any offset.
1248+ * @param byteOffset The place in the buffer at which the value should be retrieved.
1249+ */
1250+ getFloat64(byteOffset: number, littleEndian: boolean): number;
1251+
1252+ /**
1253+ * Gets the Int8 value at the specified byte offset from the start of the view. There is
1254+ * no alignment constraint; multi-byte values may be fetched from any offset.
1255+ * @param byteOffset The place in the buffer at which the value should be retrieved.
1256+ */
1257+ getInt8(byteOffset: number): number;
1258+
1259+ /**
1260+ * Gets the Int16 value at the specified byte offset from the start of the view. There is
1261+ * no alignment constraint; multi-byte values may be fetched from any offset.
1262+ * @param byteOffset The place in the buffer at which the value should be retrieved.
1263+ */
1264+ getInt16(byteOffset: number, littleEndian: boolean): number;
1265+ /**
1266+ * Gets the Int32 value at the specified byte offset from the start of the view. There is
1267+ * no alignment constraint; multi-byte values may be fetched from any offset.
1268+ * @param byteOffset The place in the buffer at which the value should be retrieved.
1269+ */
1270+ getInt32(byteOffset: number, littleEndian: boolean): number;
1271+
1272+ /**
1273+ * Gets the Uint8 value at the specified byte offset from the start of the view. There is
1274+ * no alignment constraint; multi-byte values may be fetched from any offset.
1275+ * @param byteOffset The place in the buffer at which the value should be retrieved.
1276+ */
1277+ getUint8(byteOffset: number): number;
1278+
1279+ /**
1280+ * Gets the Uint16 value at the specified byte offset from the start of the view. There is
1281+ * no alignment constraint; multi-byte values may be fetched from any offset.
1282+ * @param byteOffset The place in the buffer at which the value should be retrieved.
1283+ */
1284+ getUint16(byteOffset: number, littleEndian: boolean): number;
1285+
1286+ /**
1287+ * Gets the Uint32 value at the specified byte offset from the start of the view. There is
1288+ * no alignment constraint; multi-byte values may be fetched from any offset.
1289+ * @param byteOffset The place in the buffer at which the value should be retrieved.
1290+ */
1291+ getUint32(byteOffset: number, littleEndian: boolean): number;
1292+
1293+ /**
1294+ * Stores an Float32 value at the specified byte offset from the start of the view.
1295+ * @param byteOffset The place in the buffer at which the value should be set.
1296+ * @param value The value to set.
1297+ * @param littleEndian If false or undefined, a big-endian value should be written,
1298+ * otherwise a little-endian value should be written.
1299+ */
1300+ setFloat32(byteOffset: number, value: number, littleEndian: boolean): void;
1301+
1302+ /**
1303+ * Stores an Float64 value at the specified byte offset from the start of the view.
1304+ * @param byteOffset The place in the buffer at which the value should be set.
1305+ * @param value The value to set.
1306+ * @param littleEndian If false or undefined, a big-endian value should be written,
1307+ * otherwise a little-endian value should be written.
1308+ */
1309+ setFloat64(byteOffset: number, value: number, littleEndian: boolean): void;
1310+
1311+ /**
1312+ * Stores an Int8 value at the specified byte offset from the start of the view.
1313+ * @param byteOffset The place in the buffer at which the value should be set.
1314+ * @param value The value to set.
1315+ */
1316+ setInt8(byteOffset: number, value: number): void;
1317+
1318+ /**
1319+ * Stores an Int16 value at the specified byte offset from the start of the view.
1320+ * @param byteOffset The place in the buffer at which the value should be set.
1321+ * @param value The value to set.
1322+ * @param littleEndian If false or undefined, a big-endian value should be written,
1323+ * otherwise a little-endian value should be written.
1324+ */
1325+ setInt16(byteOffset: number, value: number, littleEndian: boolean): void;
1326+
1327+ /**
1328+ * Stores an Int32 value at the specified byte offset from the start of the view.
1329+ * @param byteOffset The place in the buffer at which the value should be set.
1330+ * @param value The value to set.
1331+ * @param littleEndian If false or undefined, a big-endian value should be written,
1332+ * otherwise a little-endian value should be written.
1333+ */
1334+ setInt32(byteOffset: number, value: number, littleEndian: boolean): void;
1335+
1336+ /**
1337+ * Stores an Uint8 value at the specified byte offset from the start of the view.
1338+ * @param byteOffset The place in the buffer at which the value should be set.
1339+ * @param value The value to set.
1340+ */
1341+ setUint8(byteOffset: number, value: number): void;
1342+
1343+ /**
1344+ * Stores an Uint16 value at the specified byte offset from the start of the view.
1345+ * @param byteOffset The place in the buffer at which the value should be set.
1346+ * @param value The value to set.
1347+ * @param littleEndian If false or undefined, a big-endian value should be written,
1348+ * otherwise a little-endian value should be written.
1349+ */
1350+ setUint16(byteOffset: number, value: number, littleEndian: boolean): void;
1351+
1352+ /**
1353+ * Stores an Uint32 value at the specified byte offset from the start of the view.
1354+ * @param byteOffset The place in the buffer at which the value should be set.
1355+ * @param value The value to set.
1356+ * @param littleEndian If false or undefined, a big-endian value should be written,
1357+ * otherwise a little-endian value should be written.
1358+ */
1359+ setUint32(byteOffset: number, value: number, littleEndian: boolean): void;
1360+ }
1361+
1362+ interface DataViewConstructor {
1363+ new (buffer: ArrayBuffer, byteOffset?: number, byteLength?: number): DataView;
1364+ }
1365+ declare var DataView: DataViewConstructor;
1366+
12341367/**
12351368 * A typed array of 8-bit integer values. The contents are initialized to 0. If the requested
12361369 * number of bytes could not be allocated an exception is raised.
@@ -15857,11 +15990,13 @@ interface DocumentEvent {
1585715990 createEvent(eventInterface:"CloseEvent"): CloseEvent;
1585815991 createEvent(eventInterface:"CommandEvent"): CommandEvent;
1585915992 createEvent(eventInterface:"CompositionEvent"): CompositionEvent;
15993+ createEvent(eventInterface: "CustomEvent"): CustomEvent;
1586015994 createEvent(eventInterface:"DeviceMotionEvent"): DeviceMotionEvent;
1586115995 createEvent(eventInterface:"DeviceOrientationEvent"): DeviceOrientationEvent;
1586215996 createEvent(eventInterface:"DragEvent"): DragEvent;
1586315997 createEvent(eventInterface:"ErrorEvent"): ErrorEvent;
1586415998 createEvent(eventInterface:"Event"): Event;
15999+ createEvent(eventInterface:"Events"): Event;
1586516000 createEvent(eventInterface:"FocusEvent"): FocusEvent;
1586616001 createEvent(eventInterface:"GamepadEvent"): GamepadEvent;
1586716002 createEvent(eventInterface:"HashChangeEvent"): HashChangeEvent;
@@ -15876,8 +16011,12 @@ interface DocumentEvent {
1587616011 createEvent(eventInterface:"MSSiteModeEvent"): MSSiteModeEvent;
1587716012 createEvent(eventInterface:"MessageEvent"): MessageEvent;
1587816013 createEvent(eventInterface:"MouseEvent"): MouseEvent;
16014+ createEvent(eventInterface:"MouseEvents"): MouseEvent;
1587916015 createEvent(eventInterface:"MouseWheelEvent"): MouseWheelEvent;
16016+ createEvent(eventInterface:"MSGestureEvent"): MSGestureEvent;
16017+ createEvent(eventInterface:"MSPointerEvent"): MSPointerEvent;
1588016018 createEvent(eventInterface:"MutationEvent"): MutationEvent;
16019+ createEvent(eventInterface:"MutationEvents"): MutationEvent;
1588116020 createEvent(eventInterface:"NavigationCompletedEvent"): NavigationCompletedEvent;
1588216021 createEvent(eventInterface:"NavigationEvent"): NavigationEvent;
1588316022 createEvent(eventInterface:"NavigationEventWithReferrer"): NavigationEventWithReferrer;
@@ -15888,13 +16027,15 @@ interface DocumentEvent {
1588816027 createEvent(eventInterface:"PopStateEvent"): PopStateEvent;
1588916028 createEvent(eventInterface:"ProgressEvent"): ProgressEvent;
1589016029 createEvent(eventInterface:"SVGZoomEvent"): SVGZoomEvent;
16030+ createEvent(eventInterface:"SVGZoomEvents"): SVGZoomEvent;
1589116031 createEvent(eventInterface:"ScriptNotifyEvent"): ScriptNotifyEvent;
1589216032 createEvent(eventInterface:"StorageEvent"): StorageEvent;
1589316033 createEvent(eventInterface:"TextEvent"): TextEvent;
1589416034 createEvent(eventInterface:"TouchEvent"): TouchEvent;
1589516035 createEvent(eventInterface:"TrackEvent"): TrackEvent;
1589616036 createEvent(eventInterface:"TransitionEvent"): TransitionEvent;
1589716037 createEvent(eventInterface:"UIEvent"): UIEvent;
16038+ createEvent(eventInterface:"UIEvents"): UIEvent;
1589816039 createEvent(eventInterface:"UnviewableContentIdentifiedEvent"): UnviewableContentIdentifiedEvent;
1589916040 createEvent(eventInterface:"WebGLContextEvent"): WebGLContextEvent;
1590016041 createEvent(eventInterface:"WheelEvent"): WheelEvent;
0 commit comments