triyak-react-performance
Version:
Advanced React performance optimization toolkit - Built with modern React best practices and performance optimization techniques
35 lines • 1.25 kB
TypeScript
export { default as TriyakPerformanceMonitor } from './components/TriyakPerformanceMonitor';
export { default as TriyakPerformanceSuite } from './components/TriyakPerformanceSuite';
export * from './types/performance';
export * from './constants/performanceThresholds';
export declare const VERSION = "1.0.0";
export declare const PACKAGE_NAME = "triyak-react-performance";
export declare const COMPANY = "Triyak Digital Agency";
export declare const WEBSITE = "https://www.triyak.in";
export declare const SUPPORT_EMAIL = "info@triyak.in";
export declare const PERFORMANCE_THRESHOLDS: {
readonly LCP: {
readonly GOOD: 2500;
readonly NEEDS_IMPROVEMENT: 4000;
readonly POOR: 4000;
};
readonly FID: {
readonly GOOD: 100;
readonly NEEDS_IMPROVEMENT: 300;
readonly POOR: 300;
};
readonly CLS: {
readonly GOOD: 0.1;
readonly NEEDS_IMPROVEMENT: 0.25;
readonly POOR: 0.25;
};
};
export declare const DEFAULT_CONFIG: {
readonly enableAIOptimization: true;
readonly optimizationMode: "aggressive";
readonly monitoring: true;
readonly alerts: true;
readonly reporting: true;
readonly autoOptimize: true;
};
//# sourceMappingURL=index.d.ts.map