@rightcapital/phpdoc-parser
Version:
TypeScript version of PHPDoc parser with support for intersection types and generics
14 lines (13 loc) • 354 B
TypeScript
export declare const enum NodeTraverserState {
DONT_TRAVERSE_CHILDREN = 1,
STOP_TRAVERSAL = 2,
REMOVE_NODE = 3,
DONT_TRAVERSE_CURRENT_AND_CHILDREN = 4
}
export declare enum Attribute {
START_LINE = "startLine",
END_LINE = "endLine",
START_INDEX = "startIndex",
END_INDEX = "endIndex",
ORIGINAL_NODE = "originalNode"
}