Interface DeprecatedAttr

interface DeprecatedAttr {
    id: string;
    inner?: Node[];
    kind: "DeprecatedAttr";
    message: string;
    name?: string;
    range?: { begin: clang.Location; end: clang.Location };
    type: TypeInfo;
}

Hierarchy (View Summary)

Properties

id: string

Hexadecimal ID for the node, e.g. "0x..."

inner?: Node[]
kind: "DeprecatedAttr"

The kind of the node

message: string
name?: string
range?: { begin: clang.Location; end: clang.Location }
type: TypeInfo