@player-ui/player
Version:
10 lines • 340 B
TypeScript
import type { Logger } from "./types";
/** A logger implementation that goes nowhere */
export declare class NoopLogger implements Logger {
readonly trace: () => void;
readonly debug: () => void;
readonly info: () => void;
readonly warn: () => void;
readonly error: () => void;
}
//# sourceMappingURL=noopLogger.d.ts.map