mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-08-29 04:26:38 +00:00
17 lines
394 B
TypeScript
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'
|