UNPKG

@minna-ui/utils

Version:

Small utility functions for use in Minna UI projects.

13 lines (11 loc) 382 B
/** Generic error handler for nodejs callbacks. */ export declare function handleErr(err?: Error | null): void; /** * Get the most recent git reference. * * @see https://git-scm.com/docs/git-describe * * @param [args] - Additional arguments to pass to `git describe`. * @returns A human readable git reference. */ export declare function gitDescribe(args?: string): string;