kkrpc
    Preparing search index...

    Interface MethodSchemaConfig<InputSchema, OutputSchema>

    Schema pair accepted by defineMethod. Both input and output are required.

    interface MethodSchemaConfig<
        InputSchema extends StandardSchemaV1<any, any>,
        OutputSchema extends StandardSchemaV1<any, any>,
    > {
        input: InputSchema;
        output: OutputSchema;
    }

    Type Parameters

    Index

    Properties

    Properties

    output: OutputSchema