xdl-node
Version:
A library for retrieving audio streams and other data from X Spaces, built on Node.js and TypeScript.
13 lines (12 loc) • 353 B
TypeScript
export interface Logger {
debug(message: string): void;
info(message: string): void;
warn(message: string): void;
error(message: string): void;
}
export declare class ConsoleLogger implements Logger {
debug(message: string): void;
info(message: string): void;
warn(message: string): void;
error(message: string): void;
}