Files
deepseek-harness/packages/util/native-command/src/index.ts
T

17 lines
394 B
TypeScript

/**
* Host-native command execution and path-opening utilities.
* @module @deepseek-ai/dsh-native-command
*/
export { runNativeCommand } from './runner.ts'
export type { NativeCommandRunner } from './runner.ts'
export {
canOpenNativePath,
openNativePath,
openNativeTextFile,
} from './path-opener.ts'
export type {
PathOpenerInternals,
PathOpenerRunner,
} from './path-opener.ts'