| 243 | map: Record<string, string>; |
| 244 | }; |
| 245 | interface AstNodeConstructor { |
| 246 | readonly prototype: AstNode; |
| 247 | new (name: string, type: number): AstNode; |
| 248 | create(name: string, attrs?: Record<string, string>): AstNode; |
| 249 | } |
| 250 | declare class AstNode { |
| 251 | static create(name: string, attrs?: Record<string, string>): AstNode; |
| 252 | name: string; |
no outgoing calls
no test coverage detected