UNPKG

@cartbc/codecs-strings

Version:

Codecs for strings of different sizes and encodings

9 lines (8 loc) 427 B
import { Decoder, Encoder } from '@cartbc/codecs-core'; /** Encodes strings in base64. */ export declare const getBase64Encoder: () => Encoder<string>; /** Decodes strings in base64. */ export declare const getBase64Decoder: () => Decoder<string>; /** Encodes and decodes strings in base64. */ export declare const getBase64Codec: () => import("@cartbc/codecs-core").Codec<string, string>; //# sourceMappingURL=base64.d.ts.map