simple-git
Version:
Simple GIT interface for node.js
8 lines (7 loc) • 322 B
TypeScript
import { TagResult } from '../../../typings/response';
export declare class TagList implements TagResult {
readonly all: string[];
readonly latest: string | undefined;
constructor(all: string[], latest: string | undefined);
}
export declare const parseTagList: (data: string, customSort?: boolean) => TagList;