Move local-databases.ts to local-databases/index.ts
This commit is contained in:
@@ -1,18 +0,0 @@
|
|||||||
export { DatabaseContentsWithDbScheme } from "./local-databases/database-contents";
|
|
||||||
export {
|
|
||||||
DatabaseChangedEvent,
|
|
||||||
DatabaseEventKind,
|
|
||||||
} from "./local-databases/database-events";
|
|
||||||
export { DatabaseItem } from "./local-databases/database-item";
|
|
||||||
export { DatabaseManager } from "./local-databases/database-manager";
|
|
||||||
export { DatabaseResolver } from "./local-databases/database-resolver";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* databases.ts
|
|
||||||
* ------------
|
|
||||||
* Managing state of what the current database is, and what other
|
|
||||||
* databases have been recently selected.
|
|
||||||
*
|
|
||||||
* The source of truth of the current state resides inside the
|
|
||||||
* `DatabaseManager` class below.
|
|
||||||
*/
|
|
||||||
15
extensions/ql-vscode/src/databases/local-databases/index.ts
Normal file
15
extensions/ql-vscode/src/databases/local-databases/index.ts
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
export { DatabaseContentsWithDbScheme } from "./database-contents";
|
||||||
|
export { DatabaseChangedEvent, DatabaseEventKind } from "./database-events";
|
||||||
|
export { DatabaseItem } from "./database-item";
|
||||||
|
export { DatabaseManager } from "./database-manager";
|
||||||
|
export { DatabaseResolver } from "./database-resolver";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* databases.ts
|
||||||
|
* ------------
|
||||||
|
* Managing state of what the current database is, and what other
|
||||||
|
* databases have been recently selected.
|
||||||
|
*
|
||||||
|
* The source of truth of the current state resides inside the
|
||||||
|
* `DatabaseManager` class below.
|
||||||
|
*/
|
||||||
Reference in New Issue
Block a user