protons
    Preparing search index...

    Interface Codec<D, E>

    interface Codec<D, E> {
        decode: DecodeFunction<D>;
        encode: EncodeFunction<E>;
        name: string;
        stream: StreamFunction<D>;
        type: number;
    }

    Type Parameters

    • D
    • E
    Index
    decode: DecodeFunction<D>
    encode: EncodeFunction<E>
    name: string
    stream: StreamFunction<D>
    type: number