Skip to content

Commit d609b6d

Browse files
Adding bigint to Value type (#129)
1 parent 0996422 commit d609b6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@react-facet/core/src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export interface EqualityCheck<T> {
1111
* Currently functions are not supported
1212
*/
1313
// eslint-disable-next-line @typescript-eslint/no-explicit-any
14-
export type Value = string | number | boolean | undefined | null | [] | Record<string, any>
14+
export type Value = string | number | boolean | undefined | null | [] | Record<string, any> | bigint
1515

1616
export type ExtractFacetValues<T extends ReadonlyArray<Facet<unknown>>> = {
1717
[K in keyof T]: T[K] extends Facet<infer V> ? V : never

0 commit comments

Comments
 (0)