mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 19:26:00 +00:00
chore: update summary typing
This commit is contained in:
9
packages/types/engines.d.ts
vendored
9
packages/types/engines.d.ts
vendored
@@ -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';
|
||||||
|
|||||||
Reference in New Issue
Block a user