child-require.d.ts 305 B

1234567
  1. interface EventEmitterInternals {
  2. _events: Record<string, Function | Array<Function>>;
  3. }
  4. declare const _process: EventEmitterInternals;
  5. declare let originalOnWarning: Function | undefined;
  6. declare const messageMatch: RegExp;
  7. declare function onWarning(this: any, warning: Error, ...rest: any[]): any;