UNPKG

@casoon/auditmysite

Version:

Professional website analysis suite with robust accessibility testing, Core Web Vitals performance monitoring, SEO analysis, and content optimization insights. Features isolated browser contexts, retry mechanisms, and comprehensive API endpoints for profe

19 lines 691 B
/** * 🔧 AuditMySite SDK - Main Entry Point * * This is the main entry point for the AuditMySite SDK. * Provides everything needed for programmatic accessibility testing. */ export { AuditSDK } from './audit-sdk'; export { AuditAPIServer } from '../api/server'; import { AuditSDK } from './audit-sdk'; import { AuditAPIServer } from '../api/server'; export * from './types'; export { ConfigManager } from '../core/config/config-manager'; export { StandardPipeline } from '../core/pipeline/standard-pipeline'; declare const AuditMySiteSDK: { AuditSDK: typeof AuditSDK; AuditAPIServer: typeof AuditAPIServer; }; export default AuditMySiteSDK; //# sourceMappingURL=index.d.ts.map