matcher/old/modules/database/interfaces/collection.interface.ts

5 lines
66 B
TypeScript
Raw Normal View History

2023-04-06 09:12:49 +00:00
export interface ICollection<T> {
data: T[];
total: number;
}