setup-bun/node_modules/ts-node/dist/child/child-require.d.ts

8 lines
305 B
TypeScript
Raw Normal View History

2023-02-22 17:47:24 -08:00
interface EventEmitterInternals {
_events: Record<string, Function | Array<Function>>;
}
declare const _process: EventEmitterInternals;
declare let originalOnWarning: Function | undefined;
declare const messageMatch: RegExp;
declare function onWarning(this: any, warning: Error, ...rest: any[]): any;