fleet/frontend/interfaces/query_report.ts
2023-11-10 13:31:11 -08:00

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[];
}