UNPKG

@player-ui/player

Version:

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