Interface OverloadedFunctionDetails

Collects all functions with the same name

interface OverloadedFunctionDetails {
    inference: CompositeTypeInferenceRule;
    overloadedFunctions: SingleFunctionDetails<any>[];
    sameOutputType: undefined | Type;
}

Properties

overloadedFunctions: SingleFunctionDetails<any>[]
sameOutputType: undefined | Type