nexus-rpc
    Preparing search index...

    Interface OperationDefinition<I, O>Experimental

    An operation contract that describes the name, and input and output types of an operation.

    interface OperationDefinition<I, O> {
        "[inputBrand]": I;
        "[outputBrand]": O;
        inputType?: TypeInfo<I, unknown>;
        name: string;
        outputType?: TypeInfo<O, unknown>;
    }

    Type Parameters

    • I
    • O
    Index

    Properties

    "[inputBrand]": I
    "[outputBrand]": O
    inputType?: TypeInfo<I, unknown>
    name: string
    outputType?: TypeInfo<O, unknown>