import { ExternalNode } from "./ExternalNode"; import { InternalNode } from "./InternalNode"; export type Node = ExternalNode | InternalNode;