-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.d.ts
More file actions
47 lines (46 loc) · 4 KB
/
types.d.ts
File metadata and controls
47 lines (46 loc) · 4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
declare global {
type Mindstream_Back_App = import("./src/App.mjs").default;
type Mindstream_Back_App_Cli_Dispatcher = import("./src/App/Cli/Dispatcher.mjs").default;
type Mindstream_Back_App_Configuration = import("./src/App/Configuration.mjs").default;
type Mindstream_Back_Attention_Ingress = import("./src/Attention/Ingress.mjs").default;
type Mindstream_Back_Cli_Db = import("./src/Cli/Db.mjs").default;
type Mindstream_Back_Cli_Db_Schema_Create = import("./src/Cli/Db/Schema/Create.mjs").default;
type Mindstream_Back_Cli_Db_Schema_Renew = import("./src/Cli/Db/Schema/Renew.mjs").default;
type Mindstream_Back_Cli_Ingest = import("./src/Cli/Ingest.mjs").default;
type Mindstream_Back_Cli_Ingest_Discover_Habr = import("./src/Cli/Ingest/Discover/Habr.mjs").default;
type Mindstream_Back_Cli_Ingest_Extract_Habr = import("./src/Cli/Ingest/Extract/Habr.mjs").default;
type Mindstream_Back_Cli_Process = import("./src/Cli/Process.mjs").default;
type Mindstream_Back_Cli_Process_Generate_Embeddings = import("./src/Cli/Process/Generate/Embeddings.mjs").default;
type Mindstream_Back_Cli_Process_Generate_Summaries = import("./src/Cli/Process/Generate/Summaries.mjs").default;
type Mindstream_Back_Cli_Runtime = import("./src/Cli/Runtime.mjs").default;
type Mindstream_Back_Cli_Runtime_Web = import("./src/Cli/Runtime/Web.mjs").default;
type Mindstream_Back_Ingest_Discover_Habr = import("./src/Ingest/Discover/Habr.mjs").default;
type Mindstream_Back_Ingest_Extract_Habr = import("./src/Ingest/Extract/Habr.mjs").default;
type Mindstream_Back_Ingest_Extract_Habr_Fetcher = import("./src/Ingest/Extract/Habr/Fetcher.mjs").default;
type Mindstream_Back_Ingest_Extract_Habr_Parser = import("./src/Ingest/Extract/Habr/Parser.mjs").default;
type Mindstream_Back_Ingest_Publication_ExtractionStore = import("./src/Ingest/Publication/ExtractionStore.mjs").default;
type Mindstream_Back_Ingest_Publication_Status = import("./src/Ingest/Publication/Status.mjs").default;
type Mindstream_Back_Ingest_Publication_Store = import("./src/Ingest/Publication/Store.mjs").default;
type Mindstream_Back_Ingest_Rss_Client = import("./src/Ingest/Rss/Client.mjs").default;
type Mindstream_Back_Ingest_Rss_Parser = import("./src/Ingest/Rss/Parser.mjs").default;
type Mindstream_Back_Ingest_Source_Habr = import("./src/Ingest/Source/Habr.mjs").default;
type Mindstream_Back_Integration_OpenAi = import("./src/Integration/OpenAi.mjs").default;
type Mindstream_Back_Platform_Fetch = import("./src/Platform/Fetch.mjs").default;
type Mindstream_Back_Process_Generate_Embeddings = import("./src/Process/Generate/Embeddings.mjs").default;
type Mindstream_Back_Process_Generate_Summaries = import("./src/Process/Generate/Summaries.mjs").default;
type Mindstream_Back_Process_Publication_Status = import("./src/Process/Publication/Status.mjs").default;
type Mindstream_Back_Process_Publication_Store = import("./src/Process/Publication/Store.mjs").default;
type Mindstream_Back_Process_Publication_EmbeddingStore = import("./src/Process/Publication/EmbeddingStore.mjs").default;
type Mindstream_Back_Process_Publication_SummaryStore = import("./src/Process/Publication/SummaryStore.mjs").default;
type Mindstream_Back_Web_Api_Attention = import("./src/Web/Api/Attention.mjs").default;
type Mindstream_Back_Web_Api_Fallback = import("./src/Web/Api/Fallback.mjs").default;
type Mindstream_Back_Web_Api_FeedView = import("./src/Web/Api/FeedView.mjs").default;
type Mindstream_Back_Web_Api_Identity = import("./src/Web/Api/Identity.mjs").default;
type Mindstream_Back_Web_Handler = import("./src/Web/Handler.mjs").default;
type Mindstream_Back_Web_Server = import("./src/Web/Server.mjs").default;
type Mindstream_Back_Storage_Knex = import("./src/Storage/Knex.mjs").default;
type Mindstream_Back_Storage_Schema = import("./src/Storage/Schema.mjs").default;
type Mindstream_Back_Storage_SchemaManager = import("./src/Storage/SchemaManager.mjs").default;
type Mindstream_Shared_Logger = import("./web/app/Shared/Logger.mjs").default;
}
export {};