Appearance
type AstTextNode = AstNode & object;
Defined in: ast.ts:86
Represents an AST node that contains plain text. Extends AstNode by adding a "value" field for the text content.
value: string;
1.0.0
Simon Kovtyk