/** * Decorator for validating the response body against a JSON schema * * @example * ``` * @suite() * class ApiTests { * @test() * @ApiEndpoint('GET', '/api/users') * @ExpectSchema(userSchema) * async getUsersTest({ request }) { * // Test implementation * } * } * ``` * * @param schema JSON schema object * @returns Method decorator */ export declare function ExpectSchema(schema: Record): (target: any, propertyKey?: string | symbol, descriptor?: PropertyDescriptor) => any; //# sourceMappingURL=expect-schema.decorator.d.ts.map