mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-01-08 22:46:08 +01:00
5 lines
64 B
TypeScript
5 lines
64 B
TypeScript
export interface Results<T> {
|
|
count: number
|
|
|
|
results: T[]
|
|
}
|