UNPKG

actionhero

Version:

The reusable, scalable, and quick node.js API server for stateless and stateful applications

9 lines (8 loc) 307 B
/** * Prepares acton response for logging. * Hides any sensitive data as defined by `api.config.general.filteredResponse` * Truncates long strings via `api.config.logger.maxLogStringLength` */ export declare function filterResponseForLogging(response: Record<string, any>): { [key: string]: any; };