Documentation
    Preparing search index...
    interface Serde<T> {
        contentType?: string;
        jsonSchema?: object;
        deserialize(data: Uint8Array): T;
        serialize(value: T): Uint8Array;
    }

    Type Parameters

    • T
    Index

    Properties

    contentType?: string
    jsonSchema?: object

    Methods

    • Parameters

      • data: Uint8Array

      Returns T

    • Parameters

      • value: T

      Returns Uint8Array