UNPKG

glu-cli

Version:

Git stacked branch management with GitHub integration

16 lines 634 B
import { RequestReviewUseCase } from "../../use-cases/request-review-use-case.js"; import { BaseCommand } from "../base-command.js"; interface RequestReviewOptions { branch?: string; push?: boolean; } export declare class RequestReviewCommand extends BaseCommand { private requestReviewUseCase; private range; private options; constructor(requestReviewUseCase: RequestReviewUseCase, range: string, options: RequestReviewOptions); static create(range: string, options: RequestReviewOptions): RequestReviewCommand; protected run(): Promise<void>; } export {}; //# sourceMappingURL=request-review.d.ts.map