Move EventEmitter inside declare module "grpc"

This commit is contained in:
Nathan Shively-Sanders 2019-08-22 11:35:22 -07:00
parent eef80c6dd0
commit 24a14d7f04
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,3 @@
import { EventEmitter } from "events";
/*
* Copyright 2019 gRPC authors.
@ -19,6 +18,7 @@ import { EventEmitter } from "events";
declare module "grpc" {
import { Message, Service as ProtobufService } from "protobufjs";
import { EventEmitter } from "events";
import { Duplex, Readable, Writable } from "stream";
import { SecureContext } from "tls";