lesgo
Version:
Core framework for lesgo node.js serverless framework.
9 lines (8 loc) • 328 B
TypeScript
/**
* Formats a Unix timestamp into a string representation.
*
* @param {number} timestamp - The Unix timestamp to format.
* @returns {string} The formatted timestamp string in UTC in the format "YYYY-MM-DD HH:MM:SS".
*/
declare const formatUnixTimestamp: (timestamp: number) => string;
export default formatUnixTimestamp;