mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
#19600 - [X] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. See [Changes files](https://fleetdm.com/docs/contributing/committing-changes#changes-files) for more information. - [X] Added/updated tests - [X] Manual QA for all new/changed functionality
13 lines
275 B
TypeScript
13 lines
275 B
TypeScript
export interface IQueryReportResultRow {
|
|
host_id: number;
|
|
host_name: string;
|
|
last_fetched: string;
|
|
columns: any; // {col:val, ...}
|
|
}
|
|
|
|
// Query report
|
|
export interface IQueryReport {
|
|
query_id: number;
|
|
results: IQueryReportResultRow[];
|
|
report_clipped: boolean;
|
|
}
|