mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
26 lines
581 B
TypeScript
26 lines
581 B
TypeScript
export {
|
|
App,
|
|
createApp,
|
|
AppEvents,
|
|
type AppConfig,
|
|
type CreateAppConfig,
|
|
type AppPlugin,
|
|
type LocalApiOptions,
|
|
} from "./App";
|
|
|
|
export {
|
|
getDefaultConfig,
|
|
getDefaultSchema,
|
|
type ModuleConfigs,
|
|
type ModuleSchemas,
|
|
type ModuleManagerOptions,
|
|
type ModuleBuildContext,
|
|
type InitialModuleConfigs,
|
|
} from "./modules/ModuleManager";
|
|
|
|
export * as middlewares from "modules/middlewares";
|
|
export { registries } from "modules/registries";
|
|
|
|
export type { MediaFieldSchema } from "media/AppMedia";
|
|
export type { UserFieldSchema } from "auth/AppAuth";
|