table tab tooltip

This commit is contained in:
Jan Prochazka
2020-03-03 07:45:35 +01:00
parent e2e46ec398
commit a4a470de45
5 changed files with 39 additions and 1 deletions

View File

@@ -6,6 +6,16 @@ export interface OpenedDatabaseConnection {
structure: DatabaseInfo;
subprocess: ChildProcess;
}
export interface StoredConnection {
engine: string;
server: string;
port?: number;
user: string;
password: string;
displayName: string;
}
export * from "./engines";
export * from "./dbinfo";
export * from "./query";