Coda by Ian Macalinao
    Preparing search index...

    Type Alias NodeSelectorPath

    NodeSelectorPath: string

    A string that can be used to select a node in a Codama tree.

    • * matches any node.
    • someText matches the name of a node, if any.
    • [someNode] matches a node of the given kind.
    • [someNode|someOtherNode] matches a node with any of the given kind.
    • [someNode]someText matches both the kind and the name of a node.
    • a.b.c matches a node c such that its ancestors contains a and b in order (but not necessarily subsequent).