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.

10 lines (8 loc) 218 B
/** * Format a timestamp to a human-readable string. * * @param date The date to format. * @returns The formatted timestamp. */ declare const formatTimestamp: (date?: Date) => string; export { formatTimestamp };