UNPKG

@shutootaki/gwm

Version:
21 lines 646 B
/** * gwm completion uninstall コマンド * 補完スクリプトをアンインストール */ import type { ShellType, CommandResult } from '../types.js'; export interface UninstallArgs { shell?: ShellType; kiro?: boolean; all?: boolean; } /** * 引数をパース */ export declare function parseUninstallArgs(args: string[]): UninstallArgs; /** UninstallResult は CommandResult の別名(後方互換性のため) */ export type UninstallResult = CommandResult; /** * uninstall コマンドを実行 */ export declare function runUninstall(args: UninstallArgs): CommandResult; //# sourceMappingURL=uninstall.d.ts.map