github-pages-deploy-action/lib/worktree.d.ts

10 lines
339 B
TypeScript
Raw Normal View History

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: unknown): Promise<void>;