aws-ddk-core
Version:
The AWS DataOps Development Kit is an open source development framework for customers that build data workflows and modern data architecture on AWS.
8 lines (7 loc) • 305 B
TypeScript
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;