Interface CompoundIdentifier

Identifier with qualifiers, e.g. table.column or db.table.col.

interface CompoundIdentifier {
    _tag: "CompoundIdentifier";
    idChain: ast.Ident[];
}

Hierarchy

  • Tagged<"CompoundIdentifier", {
        idChain: ast.Ident[];
    }>
    • CompoundIdentifier

Properties

Properties

_tag: "CompoundIdentifier"
idChain: ast.Ident[]

Generated using TypeDoc