root.d.ts 147 B

1234
  1. import { Logger } from '.';
  2. declare const setup: (factory?: () => Logger) => void;
  3. declare const rootLogger: Logger;
  4. export { rootLogger, setup };