Interface Deserializable<T>

This interface exists to define Deserializable inputs for functions that deserialize a byte buffer into a type T. It is not intended to be implemented or extended, because Typescript has no support for static methods in interfaces.

interface Deserializable<T> {
    deserialize(deserializer): T;
}

Type Parameters

  • T

Methods

Methods

Generated using TypeDoc