import { Logform, format } from 'winston'; /** * Importing user defined packages */ /** * Defining types */ export type Format = Logform.Format; export interface BriefFormatOptions { label?: boolean; timestamp?: boolean; stack?: boolean; } declare module 'winston' { namespace format { function brief(opts?: BriefFormatOptions): Format; } } export { format };