/** * daemon/create-adapter.ts — Adapter scaffold generator. * * Copies the templates/adapter/ directory to an output location, replacing * {{ADAPTER_NAME}} and {{DISPLAY_NAME}} placeholders and stripping .tmpl * extensions. * * Template source resolution order: * 1. Alongside the running dist/daemon/cli.js → ../../templates/adapter/ * (works for: npm link, local dev, global install via npm pack) * 2. Alongside package root (fallback for non-standard setups) */ export interface CreateAdapterOptions { adapterName: string; displayName?: string; outputDir?: string; } /** * Scaffold a new adapter from the built-in template. */ export declare function createAdapter(options: CreateAdapterOptions): Promise; //# sourceMappingURL=create-adapter.d.ts.map