UNPKG

114 BTypeScriptView Raw
1interface Logger {
2 log: (message: string) => void;
3 error: (message: string) => void;
4}
5export { Logger };