UNPKG

@gpa-gemstone/helper-functions

Version:
8 lines (7 loc) 283 B
/** * This function formats a duration into a human readable string * @param duration: duration in milliseconds (can be fractional) * @returns Will return a string to display the duration. */ declare const FormatDuration: (duration: number) => string; export { FormatDuration };