import { randomUUID } from "crypto"; export class InternalNode { id: string; type: string; constructor() { this.id = randomUUID(); this.type = "STATION"; } }