/** * Represents query params used as list options by the Fleet API */ export interface IListOptions { page: number; per_page: number; order_key: string; order_direction: string; } export type IListSort = Pick; export type IListPagination = Pick;