mirror of
https://github.com/fleetdm/fleet
synced 2026-05-19 06:58:30 +00:00
## For #32541 _This cannot be end-to-end tested until associated [server](https://github.com/fleetdm/fleet/issues/32542) and [agent](https://github.com/fleetdm/fleet/issues/32544) work is complete_ - Include windows as a valid platform with all logic for setup experience > software install IT Admin flow:  - [x] Changes file added for user-visible changes in `changes/` - [ ] QA'd all new/changed functionality manually --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
17 lines
377 B
TypeScript
17 lines
377 B
TypeScript
// TODO - apply broadly
|
|
export interface ListEntitiesResponsePaginationCommon {
|
|
has_next_results: boolean;
|
|
has_previous_results: boolean;
|
|
}
|
|
|
|
export interface ListEntitiesResponseCommon {
|
|
meta: ListEntitiesResponsePaginationCommon;
|
|
count: number;
|
|
}
|
|
|
|
export type OrderDirection = "asc" | "desc";
|
|
|
|
export interface PaginationParams {
|
|
page: number;
|
|
per_page: number;
|
|
}
|