@heroku/applink
Version:
Applink SDK for Heroku Apps.
11 lines (10 loc) • 322 B
TypeScript
import { Logger } from "../index.js";
export declare class LoggerImpl implements Logger {
private readonly properties;
constructor(id: string);
error(message: string): void;
warn(message: string): void;
info(message: string): void;
debug(message: string): void;
trace(message: string): void;
}