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>
13 lines
No EOL
558 B
Text
13 lines
No EOL
558 B
Text
import { CheckerFunction } from './checks/checker';
|
|
import { Csp, Version } from './csp';
|
|
import { Finding } from './finding';
|
|
export declare class CspEvaluator {
|
|
version: Version;
|
|
csp: Csp;
|
|
findings: Finding[];
|
|
constructor(parsedCsp: Csp, cspVersion?: Version, findings?: Finding[]);
|
|
evaluate(parsedCspChecks?: CheckerFunction[], effectiveCspChecks?: CheckerFunction[]): Finding[];
|
|
}
|
|
export declare const DEFAULT_CHECKS: CheckerFunction[];
|
|
export declare const STRICTCSP_CHECKS: CheckerFunction[];
|
|
//# sourceMappingURL=evaluator.d.ts.map |