UNPKG

313 BTypeScriptView Raw
1import { TagResult } from '../../../typings';
2export declare class TagList implements TagResult {
3 readonly all: string[];
4 readonly latest: string | undefined;
5 constructor(all: string[], latest: string | undefined);
6}
7export declare const parseTagList: (data: string, customSort?: boolean) => TagList;