UNPKG

freelii-passkey-kit

Version:

A helper library for creating and using smart wallet accounts on the Stellar blockchain.

13 lines (12 loc) 337 B
export interface LoggingConfig { name?: string; level?: 'info' | 'debug' | 'error' | 'warn'; transports?: Record<string, LoggerTransport>; } export interface LoggerTransport { write?: (chunk: any) => void; retrieveLogs?: () => Promise<any[]> | any[]; _transform?: any; _flush?: any; [key: string]: any; }