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) 316 B
import Command from '../abstracts/AbstractStashCommand'; export declare class UnStashCommand extends Command { static description: string; getPrompts(): Promise<any[]>; performStashOperation(answers: any): Promise<void>; run(): Promise<void>; protected shouldProceedWithPrompts: () => boolean; }