Restate Typescript SDK
    Preparing search index...

    The Standard JSON Schema converter interface.

    interface Converter {
        input: (
            options: StandardJSONSchemaV1.Options,
        ) => Record<string, unknown>;
        output: (options: StandardJSONSchemaV1.Options) => Record<string, unknown>;
    }
    Index

    Properties

    Properties

    input: (options: StandardJSONSchemaV1.Options) => Record<string, unknown>

    Converts the input type to JSON Schema. May throw if conversion is not supported.

    output: (options: StandardJSONSchemaV1.Options) => Record<string, unknown>

    Converts the output type to JSON Schema. May throw if conversion is not supported.