@re621/zestyapi
Version:
Comprehensive JS wrapper for e621.net API
14 lines (13 loc) • 407 B
TypeScript
export default class Logger {
static debug: boolean;
/**
* Writes the specified messages into the console log
* @param {string} message Messages to write
*/
static log(...message: string[]): void;
/**
* Notification about a connection created to the specified URL
* @param {string} url URL that is being connected to
*/
static connect(url: string): void;
}