import { Circuit } from "../Infra/Circuit"; import { IChange } from "../IChange"; import { NodeInfra } from "../Infra/NodeInfra"; export declare class NodeChange { terminal: NodeInfra; OldValue: any; NewValue: any; flushFilter: ((circuit: Circuit) => boolean) | undefined; constructor(terminal: NodeInfra, OldValue: any, NewValue: any); toIChange(): IChange; } //# sourceMappingURL=NodeChange.d.ts.map