UNPKG

aws-cdk

Version:

CDK Toolkit, the command line tool for CDK apps

9 lines (8 loc) 297 B
/** * Format bytes as a human readable string * * @param bytes Number of bytes to format * @param decimals Number of decimal places to show (default 2) * @returns Formatted string with appropriate unit suffix */ export declare function formatBytes(bytes: number, decimals?: number): string;