UNPKG

@cartbc/codecs-strings

Version:

Codecs for strings of different sizes and encodings

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