Interface PredicateResult

    A typescript predicate. Is used in return annotations like this: @return {x is string}.

    interface PredicateResult {
        left: NameResult;
        right: RootResult;
        type: "JsdocTypePredicate";
    }

    Properties

    Properties

    right: RootResult
    type