Move local-databases.ts to local-databases/index.ts

This commit is contained in:
Koen Vlaswinkel
2023-05-24 17:04:14 +02:00
parent d608c057a4
commit 6b9c3491ec
2 changed files with 15 additions and 18 deletions

View File

@@ -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.
*/

View 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.
*/