@shutootaki/gwm
Version:
git worktree manager CLI
17 lines • 433 B
TypeScript
/**
* gwm completion script コマンド
* 補完スクリプトを標準出力に出力
*/
import type { ShellType } from '../types.js';
export interface ScriptArgs {
shell?: ShellType;
}
/**
* 引数をパース
*/
export declare function parseScriptArgs(args: string[]): ScriptArgs;
/**
* script コマンドを実行
*/
export declare function runScript(args: ScriptArgs): boolean;
//# sourceMappingURL=script.d.ts.map