···545545 */
546546export const defineConfig = (config: UserConfig): UserConfig => config;
547547548548-export default {
549549- createClient,
550550- defineConfig,
551551-};
552552-553548export type { IR } from './ir/types';
554549export type { OpenApi } from './openApi/types';
555550export type { Plugin } from './plugins/types';
556551export type { UserConfig } from './types/config';
552552+export type { LegacyIR } from './types/types';
553553+export { utils } from './utils/exports';
+5
packages/openapi-ts/src/types/types.d.ts
···11+import type { Operation } from './client';
22+33+export namespace LegacyIR {
44+ export type LegacyOperation = Operation;
55+}