mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 02:06:01 +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();
|
||||
}
|
||||
|
||||
export interface SummaryColumn {
|
||||
fieldName: string;
|
||||
header: string;
|
||||
dataType: 'string' | 'number' | 'bytes';
|
||||
}
|
||||
export interface ServerSummaryDatabases {
|
||||
rows: any[];
|
||||
columns: DatabaseColumn[];
|
||||
columns: SummaryDatabaseColumn[];
|
||||
}
|
||||
|
||||
export type DatabaseColumn = {
|
||||
export type SummaryDatabaseColumn = {
|
||||
header: string;
|
||||
fieldName: string;
|
||||
type: 'data' | 'fileSize';
|
||||
|
||||
Reference in New Issue
Block a user