simple-git
Version:
Simple GIT interface for node.js
19 lines (18 loc) • 476 B
TypeScript
import { TagResult } from '../../../typings';
import { StringTask } from '../types';
/**
* Task used by `git.tags`
*/
export declare function tagListTask(customArgs?: string[]): StringTask<TagResult>;
/**
* Task used by `git.addTag`
*/
export declare function addTagTask(name: string): StringTask<{
name: string;
}>;
/**
* Task used by `git.addTag`
*/
export declare function addAnnotatedTagTask(name: string, tagMessage: string): StringTask<{
name: string;
}>;