Skip to content

Commit

Permalink
tools: add more TypedArray types
Browse files Browse the repository at this point in the history
  • Loading branch information
LiviaMedeiros committed Jan 12, 2022
1 parent d228e57 commit c108ea1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tools/doc/type-parser.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ const jsGlobalTypes = [
'AggregateError', 'Array', 'ArrayBuffer', 'DataView', 'Date', 'Error',
'EvalError', 'Function', 'Map', 'Object', 'Promise', 'RangeError',
'ReferenceError', 'RegExp', 'Set', 'SharedArrayBuffer', 'SyntaxError',
'TypeError', 'TypedArray', 'URIError', 'Uint8Array',
'TypeError', 'TypedArray', 'URIError', 'Int8Array', 'Uint8Array',
'Uint8ClampedArray', 'Int16Array', 'Uint16Array', 'Int32Array',
'Uint32Array', 'Float32Array', 'Float64Array', 'BigInt64Array',
'BigUint64Array',
];

const customTypesMap = {
Expand Down

0 comments on commit c108ea1

Please sign in to comment.