2 lines
72 B
TypeScript
2 lines
72 B
TypeScript
export type Table<T> = { byId: { [key: string]: T }; allIds: string[] }
|
export type Table<T> = { byId: { [key: string]: T }; allIds: string[] }
|