UNPKG

@wppconnect-team/wppconnect

Version:

WPPConnect is an open source project developed by the JavaScript community with the aim of exporting functions from WhatsApp Web to the node, which can be used to support the creation of any interaction, such as customer service, media sending, intelligen

11 lines (10 loc) 403 B
import { FormatWrap, TransformableInfo } from 'logform'; export type LogLevel = 'error' | 'warn' | 'info' | 'http' | 'verbose' | 'debug' | 'silly'; export interface MetaInfo { session?: string; type?: string; } export interface SessionInfo extends TransformableInfo, MetaInfo { } export declare const formatLabelSession: FormatWrap; export declare const defaultLogger: import("winston").Logger;