github-pages-deploy-action/lib/git.d.ts
2022-10-13 03:29:18 +00:00

10 lines
312 B
TypeScript

import { ActionInterface, Status } from './constants';
/**
* Initializes git in the workspace.
*/
export declare function init(action: ActionInterface): Promise<void | Error>;
/**
* Runs the necessary steps to make the deployment.
*/
export declare function deploy(action: ActionInterface): Promise<Status>;