Interface NamePathResult
interface NamePathResult {
left: RootResult;
pathType:
| "inner"
| "instance"
| "property"
| "property-brackets";
right: PropertyResult | SpecialNamePath<"event">;
type: "JsdocTypeNamePath";
}
left: RootResult;
pathType:
| "inner"
| "instance"
| "property"
| "property-brackets";
right: PropertyResult | SpecialNamePath<"event">;
type: "JsdocTypeNamePath";
}
A name path type. This can be a property path separated by
.
or an inner or static member (~
,#
).