interface DevicesQueryParams {
    filter: string;
    labelIds: string[];
    limit: number;
    liveTestingOnly: boolean;
    offset: number;
    search: string;
    sort: string;
    withBrowsers: boolean;
    withDedicated: boolean;
    withDisabled: boolean;
    withProperties: boolean;
    withSupportedCreators: boolean;
    [key: string]: QueryParam | QueryParam[];
}

Hierarchy (View Summary)

Indexable

Properties

filter: string
labelIds: string[]
limit: number
liveTestingOnly: boolean
offset: number
search: string
sort: string
withBrowsers: boolean
withDedicated: boolean
withDisabled: boolean
withProperties: boolean
withSupportedCreators: boolean