Interface GenericOperatorDetails<T>

interface GenericOperatorDetails<T> {
    inferenceRule?:
        | InferOperatorWithSingleOperand<T>
        | InferOperatorWithMultipleOperands<T>;
    inputParameter: NameTypePair[];
    name: string;
    outputType: Type;
    validationRule?: OperatorValidationRule<T>;
}

Type Parameters

  • T

Hierarchy (View Summary)

Properties

inputParameter: NameTypePair[]
name: string
outputType: Type
validationRule?: OperatorValidationRule<T>