7 lines
190 B
TypeScript
7 lines
190 B
TypeScript
import type { ExecutionEnv } from "../types.ts";
|
|
|
|
/** Filesystem and shell context required by the built-in execution tools. */
|
|
export interface ExecutionToolContext {
|
|
env: ExecutionEnv;
|
|
}
|