import { CodeNode } from "./CodeNode"; import { RootNode } from "./RootNode"; import { StructureNode } from "./StructureNodes"; export type SourceNode = CodeNode | RootNode | StructureNode;