UNPKG

cobinhood-rx

Version:

CobinhoodRx is a rxjs node wrapper for the CobinhoodRx Api.

12 lines (11 loc) 411 B
import { LogTypeValue } from '../Enum'; export declare type CallbackFunction = (...arg) => any; export declare class Logger { private static instance; private logType; private logWriter; private constructor(); static create(logType?: LogTypeValue, logWriter?: CallbackFunction): void; static readonly Stream: Logger; write(logType: LogTypeValue, message: string): void; }