Skip to content

Commit c108ea1

Browse files
committed
tools: add more TypedArray types
1 parent d228e57 commit c108ea1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tools/doc/type-parser.mjs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ const jsGlobalTypes = [
1616
'AggregateError', 'Array', 'ArrayBuffer', 'DataView', 'Date', 'Error',
1717
'EvalError', 'Function', 'Map', 'Object', 'Promise', 'RangeError',
1818
'ReferenceError', 'RegExp', 'Set', 'SharedArrayBuffer', 'SyntaxError',
19-
'TypeError', 'TypedArray', 'URIError', 'Uint8Array',
19+
'TypeError', 'TypedArray', 'URIError', 'Int8Array', 'Uint8Array',
20+
'Uint8ClampedArray', 'Int16Array', 'Uint16Array', 'Int32Array',
21+
'Uint32Array', 'Float32Array', 'Float64Array', 'BigInt64Array',
22+
'BigUint64Array',
2023
];
2124

2225
const customTypesMap = {

0 commit comments

Comments
 (0)