//#region src/common/data/format.d.ts /** Just a simple yet fast helper. Alternatively you may use Intl formatters http://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat */ declare function formatBytesToHumanBase1024(bytes: number, decimals?: number): string; /** Just a simple yet fast helper. Alternatively you may use Intl formatters http://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat */ declare function formatBytesToHumanBase1000(bytes: number, decimals?: number): string; /** Just a simple yet fast helper. Alternatively you may use Intl formatters http://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat */ declare function formatSecondsToTime(seconds: number, separator?: string): string; //#endregion export { formatBytesToHumanBase1024 as n, formatSecondsToTime as r, formatBytesToHumanBase1000 as t }; //# sourceMappingURL=format-CT5yVd_T.d.mts.map