UNPKG

@ossjs/release

Version:

Minimalistic, opinionated, and predictable release automation tool.

11 lines 247 B
//#region src/utils/git/get-tag.d.ts interface TagPointer { tag: string; hash: string; } /** * Get tag pointer by tag name. */ declare function getTag(tag: string): Promise<TagPointer | undefined>; //#endregion export { TagPointer, getTag };