@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
14 lines (13 loc) • 526 B
TypeScript
export declare const Level: {
NONE: number;
ERROR: number;
WARNING: number;
INFO: number;
DEBUG: number;
};
export declare const warnOnce: (id: string, ...args: any[]) => void;
export declare const warn: (tag?: string, ...args: any[]) => void;
export declare const error: (tag?: string, ...args: any[]) => void;
export declare const info: (tag?: string, ...args: any[]) => void;
export declare const debug: (tag?: string, ...args: any[]) => void;
export declare function setLevel(...args: number[]): void;