Interface Deserializer

Converts query result row into an object or value.

interface Deserializer {
    deserialize(encoded): any;
}

Implemented by

Methods

Methods

  • Deserializes raw input into target object.

    Parameters

    • encoded: string

      The raw input.

    Returns any