UNPKG

@storm-software/config-tools

Version:

A package containing various utilities to support custom workspace configurations and environment management for Storm Software projects, including configuration file handling, environment variable management, and logging utilities.

11 lines (9 loc) 383 B
/** * Format a timestamp to a human-readable string. * * @param fullDateTime Whether to include the full date and time in the formatted string (defaults to `false`, which only includes the time) * @param date The date to format. * @returns The formatted timestamp. */ declare const formatTimestamp: (fullDateTime?: boolean, date?: Date) => string; export { formatTimestamp };