public commit

This commit is contained in:
dswbx
2024-11-16 12:01:47 +01:00
commit 90f80c4280
582 changed files with 49291 additions and 0 deletions

21
app/src/modules/index.ts Normal file
View File

@@ -0,0 +1,21 @@
import * as prototype from "data/prototype";
export { prototype };
export { AppAuth } from "auth/AppAuth";
export { AppData } from "data/AppData";
export { AppMedia, type MediaFieldSchema } from "media/AppMedia";
export { AppFlows, type AppFlowsSchema } from "flows/AppFlows";
export {
type ModuleConfigs,
type ModuleSchemas,
MODULE_NAMES,
type ModuleKey
} from "./ModuleManager";
export { /*Module,*/ type ModuleBuildContext } from "./Module";
export {
type PrimaryFieldType,
type BaseModuleApiOptions,
type ApiResponse,
ModuleApi
} from "./ModuleApi";