DeclarationType is any type that can exist at the top level of a AST. Meaning it can be serialized into valid Typescript.
| 3 | // DeclarationType is any type that can exist at the top level of a AST. |
| 4 | // Meaning it can be serialized into valid Typescript. |
| 5 | type DeclarationType interface { |
| 6 | isDeclarationType() |
| 7 | Node |
| 8 | } |
| 9 | |
| 10 | type Interface struct { |
| 11 | Name Identifier |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…