UNPKG

nestjs-api-tools

Version:

Wrappers for convenient API development including validation, logging and i18n wrappers

12 lines (10 loc) 285 B
/** * Describes behaviour of object that can potentially provide messages for external logging. */ export interface ExternalMessageable { /** * Message to log to external source. * If null returned, nothing needs to be logged. */ getExternalLogMessage(): any | null; }