@obelisk/client
Version:
Typescript client to interact with Obelisk on a higher level than the regular ReST API calls.
20 lines (19 loc) • 538 B
TypeScript
/**
* @hidden
*/
export declare class Logger {
/**
* Print in console.debug() if #Config.debug is true. console.debug is in the verbose section of the chrome console.
* @param msg
* @param prefix
* @param delim
*/
static debug(msg: any, prefix?: string, delim?: string): void;
/**
* Print in console.log() (no matter the #Config.debug flag)
* @param msg
* @param prefix
* @param delim
*/
static log(msg: any, prefix?: string, delim?: string): void;
}