/** * Browser bundle entry point. * Exports browser-compatible generation functions for use in web applications. * * This module provides: * - generate() - Main function to generate code from API specs * - parseConfig() - Parse configuration from JSON/YAML strings * - BrowserOutput - In-memory file storage * - MemoryAdapter - Shared in-memory output adapter */ export { generate } from './generate'; export type { BrowserGenerateInput, BrowserGenerateOutput } from './generate'; export { parseConfig, serializeConfig } from './config'; export { BrowserOutput } from './adapters/output'; export { MemoryAdapter } from '../codegen/output'; export type { OutputAdapter } from '../codegen/output'; export type { TheCodegenConfiguration } from '../codegen/types';