7 lines
219 B
TypeScript
7 lines
219 B
TypeScript
export interface GitPushConfig {
|
|
apiUrl: string;
|
|
apiToken: string;
|
|
username: string;
|
|
}
|
|
export declare function gitCommitAndPush(workspaceRoot: string, message: string, cfg: GitPushConfig): Promise<unknown>;
|