Interface NamePathResult

    A name path type. This can be a property path separated by . or an inner or static member (~, #).

    interface NamePathResult {
        left: RootResult;
        pathType:
            | "inner"
            | "instance"
            | "property"
            | "property-brackets";
        right: PropertyResult | SpecialNamePath<"event">;
        type: "JsdocTypeNamePath";
    }

    Properties

    Properties

    pathType:
        | "inner"
        | "instance"
        | "property"
        | "property-brackets"
    type