/** * @see Logger.constructor */ export interface InjectLoggerOptions { context?: string; isTimeDiffEnabled?: boolean; } export declare function Log(prefix?: string, options?: InjectLoggerOptions): PropertyDecorator; export declare function Log(options?: InjectLoggerOptions): PropertyDecorator;