@scrimmage/rewards
Version:
Simple rewards for your app or website
12 lines (11 loc) • 396 B
TypeScript
import { ILogger } from '../types/ILogger';
import { ConfigService } from './Config.service';
export declare class LoggerService implements ILogger {
private readonly configService;
constructor(configService: ConfigService);
log(...args: any[]): void;
warn(...args: any[]): void;
debug(...args: any[]): void;
info(...args: any[]): void;
error(...args: any[]): void;
}