Restate Typescript SDK
    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