mirror of
https://github.com/fleetdm/fleet
synced 2026-05-17 05:58:40 +00:00
12 lines
248 B
TypeScript
12 lines
248 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[];
|
|
}
|