UNPKG

ogit

Version:

A lazy developer's Git CLI made simple. Makes using git on cloud IDEs (i.e. C9) a walk in the park.

9 lines (8 loc) 320 B
import Command from '../abstracts/AbstractStashCommand'; export declare class DeleteStashCommand extends Command { static description: string; getPrompts(): Promise<any[]>; performStashOperation(answers: any): Promise<void>; run(): Promise<void>; protected shouldProceedWithPrompts: () => boolean; }