We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0996422 commit d609b6dCopy full SHA for d609b6d
packages/@react-facet/core/src/types.ts
@@ -11,7 +11,7 @@ export interface EqualityCheck<T> {
11
* Currently functions are not supported
12
*/
13
// eslint-disable-next-line @typescript-eslint/no-explicit-any
14
-export type Value = string | number | boolean | undefined | null | [] | Record<string, any>
+export type Value = string | number | boolean | undefined | null | [] | Record<string, any> | bigint
15
16
export type ExtractFacetValues<T extends ReadonlyArray<Facet<unknown>>> = {
17
[K in keyof T]: T[K] extends Facet<infer V> ? V : never
0 commit comments