/** * SSR entry point for @ahmttyydn/api-reference. * * Re-exports the same components as the main entry. The ApiReference component * is SSR-compatible and works with createSSRApp and renderToString from * @vue/server-renderer. * * @example * ```ts * import { createSSRApp } from 'vue' * import { renderToString } from '@vue/server-renderer' * import { ApiReference } from '@ahmttyydn/api-reference/ssr' * * const app = createSSRApp({ * render: () => h(ApiReference, { configuration: { url: '/openapi.json' } }), * }) * const html = await renderToString(app) * ``` */ export type { ApiReferenceConfiguration, ReferenceProps } from './index.js'; export { ApiReference, GettingStarted, SearchButton, SearchModal, createApiReference, createEmptySpecification, } from './index.js'; //# sourceMappingURL=ssr.d.ts.map