@textlint/ast-node-types
Version:
textlint AST node type definition.
37 lines (36 loc) • 755 B
text/typescript
export { ASTNodeTypes } from "./ASTNodeTypes";
export type {
// abstract node types
AnyTxtNode,
TxtNode,
TxtNodeType,
TxtParentNode,
TxtTextNode,
// properties
TxtNodeRange,
TxtNodeLocation,
TxtNodePosition,
// node types
TxtBlockQuoteNode,
TxtBreakNode,
TxtCodeBlockNode,
TxtCommentNode,
TxtDeleteNode,
TxtDocumentNode,
TxtEmphasisNode,
TxtHeaderNode,
TxtHorizontalRuleNode,
TxtHtmlNode,
TxtImageNode,
TxtLinkNode,
TxtListItemNode,
TxtListNode,
TxtParagraphNode,
TxtCodeNode,
TxtStrNode,
TxtStrongNode,
TxtTableNode,
TxtTableRowNode,
TxtTableCellNode
} from "./NodeType";
export type { TypeofTxtNode } from "./TypeofTxtNode";