chore: update summary typing

This commit is contained in:
Pavel
2025-08-14 20:09:47 +02:00
parent 02ee327595
commit 939bbc3f2c

View File

@@ -122,17 +122,12 @@ export interface SqlBackupDumper {
run(); run();
} }
export interface SummaryColumn {
fieldName: string;
header: string;
dataType: 'string' | 'number' | 'bytes';
}
export interface ServerSummaryDatabases { export interface ServerSummaryDatabases {
rows: any[]; rows: any[];
columns: DatabaseColumn[]; columns: SummaryDatabaseColumn[];
} }
export type DatabaseColumn = { export type SummaryDatabaseColumn = {
header: string; header: string;
fieldName: string; fieldName: string;
type: 'data' | 'fileSize'; type: 'data' | 'fileSize';