/** * Interface for path parameters */ export interface PathParams { [key: string]: string | number; } /** * Decorator for specifying path parameters for an API endpoint * * @example * ``` * @suite() * class ApiTests { * @test() * @ApiEndpoint('GET', '/api/users/{id}') * @PathParams({ id: '123' }) * async getUserTest({ request }) { * // Test implementation * } * } * ``` * * @param params Path parameters object * @returns Method decorator */ export declare function PathParams(params: PathParams): (target: any, propertyKey?: string | symbol, descriptor?: PropertyDescriptor) => any; //# sourceMappingURL=path-params.decorator.d.ts.map