- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
8 lines
305 B
TypeScript
8 lines
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;
|