import type { MutableRunData, NodeId, NodeOutputs, RunDataFactory } from "../types"; import { InMemoryRunData } from "./InMemoryRunData"; export class InMemoryRunDataFactory implements RunDataFactory { create(initial?: Record): MutableRunData { return new InMemoryRunData(initial); } }