elearning/Frontend-Learner/node_modules/simple-git/dist/src/lib/tasks/push.d.ts
2026-01-13 10:48:02 +07:00

9 lines
375 B
TypeScript

import { PushResult } from '../../../typings';
import { StringTask } from '../types';
type PushRef = {
remote?: string;
branch?: string;
};
export declare function pushTagsTask(ref: PushRef | undefined, customArgs: string[]): StringTask<PushResult>;
export declare function pushTask(ref: PushRef | undefined, customArgs: string[]): StringTask<PushResult>;
export {};