mirror of
https://github.com/EvoMap/evolver.git
synced 2026-09-18 21:47:53 +08:00
8 lines
386 B
TypeScript
8 lines
386 B
TypeScript
import { LocalMemoryGraph } from './localMemoryGraph.js';
|
|
export interface MemoryGraphOpsDeps {
|
|
env?: Record<string, string | undefined>;
|
|
stdout?: (text: string) => void;
|
|
stderr?: (text: string) => void;
|
|
createGraph?: (dir: string) => LocalMemoryGraph;
|
|
}
|
|
export declare function runMemoryGraphCommand(argv: readonly string[], deps?: MemoryGraphOpsDeps): Promise<number>; |