@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.
13 lines (12 loc) • 338 B
TypeScript
/**
* @module Codec
*/
import { type ICodec } from "../../../codec/contracts/_module.js";
/**
* IMPORT_PATH: `"@daiso-tech/core/codec/base-64-codec"`
* @group Implementations
*/
export declare class Base64Codec implements ICodec<string, string> {
encode(decodedValue: string): string;
decode(encodedValue: string): string;
}