pk, fk analyse, show in structure tab

This commit is contained in:
Jan Prochazka
2020-02-02 16:43:41 +01:00
parent 2a74718544
commit b76c12c7d7
10 changed files with 202 additions and 42 deletions

9
types/index.d.ts vendored
View File

@@ -1,11 +1,10 @@
/// <reference types="node" />
import { ChildProcess } from "child_process";
import { DatabaseInfo } from "./dbinfo";
export interface OpenedDatabaseConnection {
conid: string;
database: string;
structure: DatabaseInfo;
subprocess: ChildProcess;
conid: string;
database: string;
structure: DatabaseInfo;
subprocess: ChildProcess;
}
export * from "./engines";
export * from "./dbinfo";