logform-fix.d.ts 283 B

12345678910
  1. import { SPLAT } from 'triple-beam'
  2. // Workaround until fixed.
  3. // https://github.com/winstonjs/logform/issues/111
  4. declare module 'logform' {
  5. export interface TransformableInfo {
  6. // eslint-disable-next-line @typescript-eslint/no-explicit-any
  7. [SPLAT]: any
  8. }
  9. }