diff --git a/packages/@react-facet/core/src/types.ts b/packages/@react-facet/core/src/types.ts index 9d08853c..fe1d8231 100644 --- a/packages/@react-facet/core/src/types.ts +++ b/packages/@react-facet/core/src/types.ts @@ -11,7 +11,7 @@ export interface EqualityCheck { * Currently functions are not supported */ // eslint-disable-next-line @typescript-eslint/no-explicit-any -export type Value = string | number | boolean | undefined | null | [] | Record +export type Value = string | number | boolean | undefined | null | [] | Record | bigint export type ExtractFacetValues>> = { [K in keyof T]: T[K] extends Facet ? V : never