@shutootaki/gwm
Version:
git worktree manager CLI
12 lines • 507 B
TypeScript
/**
* シェル補完スクリプト生成のエントリーポイント
*/
import type { ShellType, CompletionDefinition } from '../../types.js';
export { generateBashScript } from './bash.js';
export { generateZshScript } from './zsh.js';
export { generateFishScript } from './fish.js';
/**
* 指定されたシェル向けの補完スクリプトを生成
*/
export declare function generateShellScript(shell: ShellType, definition?: CompletionDefinition): string;
//# sourceMappingURL=index.d.ts.map