//#region src/exports/codec-types.d.ts type CodecTypes = { readonly 'mongo/objectId@1': { readonly input: string; readonly output: string; }; readonly 'mongo/string@1': { readonly input: string; readonly output: string; }; readonly 'mongo/double@1': { readonly input: number; readonly output: number; }; readonly 'mongo/int32@1': { readonly input: number; readonly output: number; }; readonly 'mongo/bool@1': { readonly input: boolean; readonly output: boolean; }; readonly 'mongo/date@1': { readonly input: Date; readonly output: Date; }; readonly 'mongo/vector@1': { readonly input: readonly number[]; readonly output: readonly number[]; }; }; //#endregion export { CodecTypes }; //# sourceMappingURL=codec-types.d.mts.map