Rocky_Mountain_Vending/.pnpm-store/v10/files/eb/2dc2033fbd9b345a74e6f4864a01a55b2a521737a446d71c520e083eda9b584caabde4f71122c3e947abb0c0901043d8d8b7b0372e9e3dfcc21423980415e1
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

17 lines
No EOL
754 B
Text

export default AxeAudit;
declare class AxeAudit extends Audit {
/**
* Base class for audit rules which reflect assessment performed by the aXe accessibility library
* See https://github.com/dequelabs/axe-core/blob/6b444546cff492a62a70a74a8fc3c62bd4729400/doc/API.md#results-object for result type and format details
*
* @param {LH.Artifacts} artifacts Accessibility gatherer artifacts. Note that AxeAudit
* expects the meta name for the class to match the rule id from aXe.
* @return {LH.Audit.Product}
*/
static audit(artifacts: LH.Artifacts): LH.Audit.Product;
}
export namespace UIStrings {
let failingElementsHeader: string;
}
import { Audit } from '../audit.js';
//# sourceMappingURL=axe-audit.d.ts.map