/** * Lemma API v2 — HTTP factory (Lane C) * * createApp(deps) — dependency-injected, no global singletons, so tests build the * app with in-memory stores/resolvers/ledgers. PROHIBITED: touching * src/cloud/server.ts — the v1 server stays untouched; v2 lives entirely here. * * Ownership: Lane C. */ import { type Express } from 'express'; import { type MountDeps } from './routes/index.js'; export type AppDeps = MountDeps; export declare function createApp(deps: AppDeps): Express; export default createApp; //# sourceMappingURL=app.d.ts.map