@daiso-tech/core
Version:
The library offers flexible, framework-agnostic solutions for modern web applications, built on adaptable components that integrate seamlessly with popular frameworks like Next Js.
14 lines (13 loc) • 377 B
TypeScript
/**
* @module Serde
*/
import { type ISerde } from "../../../../serde/contracts/_module-exports.js";
/**
* @internal
*/
export declare class MongodbSerde implements ISerde<string | number> {
private readonly serde;
constructor(serde: ISerde<string>);
serialize<TValue>(value: TValue): string | number;
deserialize<TValue>(value: string | number): TValue;
}