import { MongoCodecRegistry } from "@prisma-next/mongo-codec"; import { RuntimeTargetDescriptor, RuntimeTargetInstance } from "@prisma-next/framework-components/execution"; //#region src/exports/runtime.d.ts interface MongoRuntimeTargetInstance extends RuntimeTargetInstance<'mongo', 'mongo'> {} /** * Target-mongo deliberately does NOT import `MongoRuntimeTargetDescriptor` from `@prisma-next/mongo-runtime`. The target package is a control-plane residence and must not pull the Mongo execution-plane package into its dependency closure. The runtime descriptor here is shaped to satisfy the framework's `RuntimeTargetDescriptor` plus the structural `MongoStaticContributions` (`codecs`) that `@prisma-next/mongo-runtime` * consumers narrow to at composition time. */ declare const mongoRuntimeTargetDescriptor: RuntimeTargetDescriptor<'mongo', 'mongo', MongoRuntimeTargetInstance> & { readonly codecs: () => MongoCodecRegistry; }; //#endregion export { MongoRuntimeTargetInstance, mongoRuntimeTargetDescriptor as default }; //# sourceMappingURL=runtime.d.mts.map