/** * Logs the execution of a method, including request ID, arguments, results, and errors. * Supports methods that return a Promise, Observable, or synchronous result. * Automatically injects the `ClsService` from `nestjs-cls` to trace by request ID. * * @param configs.showDataResponse Whether to include the response body in the logs. * @param configs.showArgumentsReceive Whether to include the arguments body / params in the logs. * * @example * ```ts * @Tracking({ showDataResponse: true }) * async getUser(id: string) { ... } * ``` */ export declare function Tracking(configs?: { showDataResponse?: boolean; showArgumentsReceive?: boolean; }): (target: any, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor; //# sourceMappingURL=tracking.decorator.d.ts.map