@types/git-rev
Version:
TypeScript definitions for git-rev
6 lines (5 loc) • 316 B
TypeScript
export function short(callback: (short: string) => void): void;
export function long(callback: (long: string) => void): void;
export function branch(callback: (branch: string) => void): void;
export function tag(callback: (tag: string) => void): void;
export function log(callback: (log: string[][]) => void): void;