UNPKG

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