/** * Example Usage: Frontend Contract Validator * * This demonstrates how to use the Frontend Contract Validator * to detect API contract violations in your codebase. */ import { APIContract } from '../types/api-contracts'; /** * Example: Basic Usage */ export declare function exampleBasicUsage(): Promise; /** * Example: CI/CD Integration */ export declare function exampleCIIntegration(): Promise; /** * Example: Real-world scenario (401 bug detection) */ export declare function example401BugDetection(): Promise; /** * Example: Generate contracts from OpenAPI/Swagger */ export declare function exampleContractsFromOpenAPI(openAPISpec: any): APIContract[]; /** * Example: Load contracts from JSON file */ export declare function exampleLoadContractsFromFile(filePath: string): Promise; /** * Example: Detect only critical authentication issues */ export declare function exampleAuthOnlyValidation(): Promise; //# sourceMappingURL=example-usage.d.ts.map