/** * Programmatic entry point for the accessibility gate, for the rare consumer * that needs to embed the audit rather than shell out to the CLI. */ export { resolveConfig, ConfigError, DEFAULT_FAIL_ON, DEFAULT_STANDARD } from './config'; export { entryCovers, findUnreachableRouteScopes, flattenViolations, isExpired, partitionNodes, routeMatches, selectorMatches, } from './allowlist'; export { renderConsole, renderMarkdown } from './report'; export { runAudit } from './audit'; export { startApp } from './server'; export type * from './types';