Files
opencode-plugin-tmux-utils/dist/shared/shell-env.d.ts
Dmytro Stanchiev 15be750b5c need dist for plugins
Signed-off-by: Dmytro Stanchiev <git@dmytros.dev>
2026-04-19 19:15:51 -04:00

6 lines
372 B
TypeScript

export type ShellType = "unix" | "powershell" | "cmd";
export declare function detectShellType(): ShellType;
export declare function shellEscape(value: string, shellType: ShellType): string;
export declare function buildEnvPrefix(env: Record<string, string>, shellType: ShellType): string;
export declare function shellEscapeForDoubleQuotedCommand(value: string): string;