UNPKG

ngperf-audit

Version:

A comprehensive Angular performance analyzer that identifies performance bottlenecks, memory leaks, and optimization opportunities in Angular applications

29 lines 759 B
/** * Optional attribution helper * Helps users provide proper attribution as required by the license */ export interface AttributionInfo { hasAttribution: boolean; suggestions: string[]; message: string; } export declare class LicenseChecker { /** * Helper to check if attribution is present and provide suggestions * This is optional and for guidance only */ static checkAttribution(): AttributionInfo; /** * Display attribution information */ static displayAttributionInfo(): void; /** * Get suggested attribution text */ static getAttributionText(): { aboutSection: string; readme: string; cli: string; }; } //# sourceMappingURL=license-checker.d.ts.map