/** * @omnify/ts — Frontend BaseService Generator (issue #58) * * Generates a `{Entity}Service.ts` per schema with `options.service` or * `options.api`. Each file exports a factory function `create{Entity}BaseService` * that returns typed CRUD methods. URL construction is injected by the caller * so the generated code never hardcodes routes. */ import type { SchemaDefinition, TypeScriptFile, GeneratorOptions } from './types.js'; export declare function generateTsServices(schemas: Record, options: GeneratorOptions): TypeScriptFile[];