@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) • 360 B
TypeScript
/**
* @module Serde
*/
import { type ISerde } from "../../../../serde/contracts/_module-exports.js";
/**
* @internal
*/
export declare class RedisCacheAdapterSerde implements ISerde<string> {
private readonly serde;
constructor(serde: ISerde<string>);
serialize<TValue>(value: TValue): string;
deserialize<TValue>(value: string): TValue;
}