github-pages-deploy-action/lib/worktree.d.ts
2021-02-08 04:58:32 +00:00

10 lines
339 B
TypeScript

import { ActionInterface } from './constants';
export declare class GitCheckout {
orphan: boolean;
commitish?: string | null;
branch: string;
constructor(branch: string);
toString(): string;
}
export declare function generateWorktree(action: ActionInterface, worktreedir: string, branchExists: boolean): Promise<void>;