15 lines
344 B
TypeScript
15 lines
344 B
TypeScript
// Export schemas
|
|
export * from './schemas';
|
|
|
|
// Export config instance functions
|
|
export {
|
|
initializeStockConfig,
|
|
getStockConfig,
|
|
getServiceConfig,
|
|
getProviderConfig,
|
|
isFeatureEnabled,
|
|
resetStockConfig,
|
|
} from './config-instance';
|
|
|
|
// Re-export type for convenience
|
|
export type { StockAppConfig } from './schemas/stock-app.schema';
|