@adviser/cement - v0.0.0
    Preparing search index...

    Interface TxtEnDecoder

    interface TxtEnDecoder {
        encode: (input: string) => Uint8Array;
        decode: (input?: ToDecoder) => string;
        asyncDecode: (input?: AsyncToDecoder) => Promise<string>;
    }
    Index

    Properties

    encode: (input: string) => Uint8Array
    decode: (input?: ToDecoder) => string
    asyncDecode: (input?: AsyncToDecoder) => Promise<string>