@designliquido/xpath
    Preparing search index...

    Interface XPathType

    XPath 2.0+ type system support (placeholder for future implementation).

    interface XPathType {
        name: string;
        category: "function" | "node" | "sequence" | "atomic";
        optional?: boolean;
        cardinality?: "one" | "zero-or-one" | "one-or-more" | "zero-or-more";
    }
    Index

    Properties

    name: string

    Type name (e.g., 'xs:string', 'xs:integer', 'node()', 'item()')

    category: "function" | "node" | "sequence" | "atomic"

    Type category

    optional?: boolean

    Whether this type accepts empty sequences

    cardinality?: "one" | "zero-or-one" | "one-or-more" | "zero-or-more"

    Cardinality indicator

    • 'one': exactly one
    • 'zero-or-one': ?
    • 'zero-or-more': *
    • 'one-or-more': +