protons
    Preparing search index...

    Interface Codec<T>

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

    Type Parameters

    • T
    Index

    Properties

    decode: DecodeFunction<T>
    encode: EncodeFunction<T>
    name: string
    stream: StreamFunction<T>
    type: number