code: nextjs,index,frontends (2 files)

This commit is contained in:
2025-12-25 20:48:21 +00:00
parent cd66f8ed29
commit 56ce32e902
2 changed files with 4 additions and 3 deletions

View File

@@ -1,3 +1,3 @@
// Component system exports
export { componentCatalog, getComponentCatalog } from './component-catalog'
export { componentCatalog } from './component-catalog'
export { ComponentRegistry, getComponentRegistry } from './component-registry'

View File

@@ -1,4 +1,5 @@
// DBAL (Database Abstraction Layer) exports
export { DBALClient, createDBALClient } from './dbal-client'
export { getDBALIntegration, initializeDBAL } from './dbal-integration'
export { createDBALStub, DBALStub } from './dbal-stub'
export { DBALIntegration, dbal } from './dbal-integration'
export { default as DBALStub } from './dbal-stub'
export type { DBALConfig, DBALUser, ListResult } from './dbal-stub'