Search


Search something to see results

AstDeclaration

declaration node

interface AstDeclaration {
    "[ROOT]"?: AstStyleSheet;
    errors?: ErrorDescription[];
    nam: string;
    parent?: any;
    state?: any;
    typ: DeclarationNodeType;
    val: Token[];
    [key: number]: string | undefined;
}

Hierarchy (View Summary)

Indexable

  • [key: number]: string | undefined

Index

Properties

"[ROOT]"?: AstStyleSheet

root node

errors?: ErrorDescription[]

Syntax errors

nam: string

token name

parent?: any

parent node

state?: any

Node state

token type

val: Token[]

token value