Files
huishou/node_modules/simple-git/dist/src/lib/tasks/push.d.ts
T
2026-07-27 14:07:26 +08:00

10 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 {};