Type Alias CodecLike<Encodable, Decoded>

CodecLike<Encodable, Decoded>: {
    encode: ((encodable: Encodable) => ccc.Bytes);
    decode: ((decodable: BytesLike) => Decoded);
    byteLength?: number;
}

Type Parameters