chore: Add null to DataStoreColumnJsType (no-changelog) (#18733)

This commit is contained in:
Charlie Kolb
2025-08-25 15:59:40 +02:00
committed by GitHub
parent 1777803e26
commit 37ace47131
3 changed files with 8 additions and 9 deletions

View File

@@ -70,9 +70,9 @@ export type MoveDataStoreColumnOptions = {
export type AddDataStoreColumnOptions = Pick<DataStoreColumn, 'name' | 'type'> &
Partial<Pick<DataStoreColumn, 'index'>>;
export type DataStoreColumnJsType = string | number | boolean | Date;
export type DataStoreColumnJsType = string | number | boolean | Date | null;
export type DataStoreRow = Record<string, DataStoreColumnJsType | null>;
export type DataStoreRow = Record<string, DataStoreColumnJsType>;
export type DataStoreRows = DataStoreRow[];
export type DataStoreRowWithId = DataStoreRow & { id: number };