Skip to content

Commit

Permalink
remove BigInt64Array / BigUint64Array from type to make it easier…
Browse files Browse the repository at this point in the history
… for older consumers (but still support it at runtime)
  • Loading branch information
planttheidea committed Feb 26, 2023
1 parent 6ff9a7a commit afa2629
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,7 @@ interface CreateComparatorCreatorOptions<Meta> {
>;
areRegExpsEqual: TypeEqualityComparator<RegExp, Meta>;
areSetsEqual: TypeEqualityComparator<Set<any>, Meta>;
areTypedArraysEqual: TypeEqualityComparatory<Big>
}

interface CustomEqualCreatorOptions<Meta> {
Expand Down
2 changes: 0 additions & 2 deletions src/internalTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,6 @@ export type InternalEqualityComparator<Meta> = (
) => boolean;

export type TypedArray =
| BigInt64Array
| BigUint64Array
| Float32Array
| Float64Array
| Int8Array
Expand Down

0 comments on commit afa2629

Please sign in to comment.