MCPcopy
hub / github.com/1weiho/open-slide / RunResult

Interface RunResult

packages/cli/src/git.ts:5–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3const IS_WINDOWS = process.platform === 'win32';
4
5interface RunResult {
6 code: number | null;
7 stdout: string;
8 stderr: string;
9}
10
11async function run(cmd: string, args: string[], cwd: string): Promise<RunResult> {
12 return new Promise((resolve, reject) => {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected