8 lines
68 B
TypeScript
8 lines
68 B
TypeScript
export interface Results<T> {
|
|
|
|
count: number
|
|
|
|
results: T[]
|
|
|
|
}
|