oak-assistant/types.d.ts

10 lines
270 B
TypeScript

export {}; // This ensures the file is treated as a module
declare global {
interface oakLogger {
log: (...args: any[]) => void;
error: (...args: any[]) => void;
warn: (...args: any[]) => void;
info: (...args: any[]) => void;
}
}