argos/dmp-frontend/src/common/model/query-result.ts

4 lines
64 B
TypeScript

export interface QueryResult<T> {
count: number;
items: T[];
}