UNPKG

@stacksjs/stx

Version:

A performant UI Framework. Powered by Bun.

19 lines 623 B
import type { BundleStats } from './collector'; /** * Generate interactive HTML treemap */ export declare function generateTreemap(stats: BundleStats, options?: TreemapOptions): string; /** * Open URL in default browser */ export declare function openInBrowser(filePath: string): void; // ============================================================================ // Types // ============================================================================ export declare interface TreemapOptions { output?: string open?: boolean title?: string gzip?: boolean colorScheme?: 'default' | 'pastel' | 'monochrome' }