diff --git a/packages/core/src/contexts/data/types.ts b/packages/core/src/contexts/data/types.ts index 8b63bb716ba3f..73b89467f3374 100644 --- a/packages/core/src/contexts/data/types.ts +++ b/packages/core/src/contexts/data/types.ts @@ -5,7 +5,7 @@ export type Prettify = { [K in keyof T]: T[K]; } & {}; -export type BaseKey = string | number; +export type BaseKey = string | number | number[]; export type BaseRecord = { id?: BaseKey; [key: string]: any;