UNPKG

@flashport/flashportui

Version:

This is a set basic UI components for FlashPort

12 lines (11 loc) 288 B
/** * Logging utility * @author Kenny Lerma */ export declare class Log { static disable: boolean; static info: (msg: string) => void; static warning: (msg: string) => void; static error: (msg: string) => void; static output: (type: string, msg: string) => void; }