react-styleguidist
Version:
React components style guide generator
14 lines (13 loc) • 460 B
TypeScript
declare module 'glogg' {
interface GloggLogger {
debug(msg: string): void;
info(msg: string): void;
warn(msg: string): void;
error(msg: string): void;
on(event: string | symbol, listener: (...args: any[]) => void): void;
once(actionName: string, action: (msg: string) => void): void;
removeAllListeners(): void;
}
function getLogger(namespace: string): GloggLogger;
export = getLogger;
}