fleet/frontend/interfaces/query_report.ts

14 lines
275 B
TypeScript
Raw Normal View History

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