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>
14 lines
No EOL
546 B
Text
14 lines
No EOL
546 B
Text
export default ViolationAudit;
|
|
declare class ViolationAudit extends Audit {
|
|
/**
|
|
* @param {LH.Artifacts} artifacts
|
|
* @param {LH.Audit.Context} context
|
|
* @param {RegExp} pattern
|
|
* @return {Promise<Array<{source: LH.Audit.Details.SourceLocationValue}>>}
|
|
*/
|
|
static getViolationResults(artifacts: LH.Artifacts, context: LH.Audit.Context, pattern: RegExp): Promise<Array<{
|
|
source: LH.Audit.Details.SourceLocationValue;
|
|
}>>;
|
|
}
|
|
import { Audit } from './audit.js';
|
|
//# sourceMappingURL=violation-audit.d.ts.map |