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

10 lines
312 B
TypeScript
Raw Normal View History

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>;