fedisearch/application/src/graphql/client/types/List.ts

7 wiersze
127 B
TypeScript
Czysty Zwykły widok Historia

2022-09-14 19:16:00 +00:00
import { PagingType } from '../../server/schema/types'
2022-11-03 18:38:01 +00:00
export interface List<TItem> {
paging: PagingType
items: TItem[]
2022-09-14 19:16:00 +00:00
}