Interface Codec<V, T>

Data encoder and decoder.

interface Codec {
    decode(data): V;
    encode(data): T;
}

Type Parameters

  • V

  • T

Hierarchy

Methods

Methods

Generated using TypeDoc