5 lines
110 B
TypeScript
5 lines
110 B
TypeScript
|
|
export interface IGroupingStore<T = unknown> {
|
||
|
|
readonly type: string;
|
||
|
|
getByIds(ids: string[]): T[];
|
||
|
|
}
|