@@ -84,7 +84,7 @@ declare module "grpc" {
8484 * @return The resulting gRPC object
8585 */
8686 export function loadPackageDefinition ( packageDefinition : PackageDefinition ) : GrpcObject ;
87-
87+
8888 /**
8989 * A filename
9090 */
@@ -1304,11 +1304,11 @@ declare module "grpc" {
13041304 build ( ) : StatusObject ;
13051305 }
13061306
1307- export type MetadataListener = ( metadata : Metadata , next : function ) => void ;
1307+ export type MetadataListener = ( metadata : Metadata , next : Function ) => void ;
13081308
1309- export type MessageListener = ( message : any , next : function ) => void ;
1309+ export type MessageListener = ( message : any , next : Function ) => void ;
13101310
1311- export type StatusListener = ( status : StatusObject , next : function ) => void ;
1311+ export type StatusListener = ( status : StatusObject , next : Function ) => void ;
13121312
13131313 export interface Listener {
13141314 onReceiveMetadata ?: MetadataListener ;
@@ -1346,15 +1346,15 @@ declare module "grpc" {
13461346 build ( ) : Listener ;
13471347 }
13481348
1349- export type MetadataRequester = ( metadata : Metadata , listener : Listener , next : function ) => void ;
1349+ export type MetadataRequester = ( metadata : Metadata , listener : Listener , next : Function ) => void ;
13501350
1351- export type MessageRequester = ( message : any , next : function ) => void ;
1351+ export type MessageRequester = ( message : any , next : Function ) => void ;
13521352
1353- export type CloseRequester = ( next : function ) => void ;
1353+ export type CloseRequester = ( next : Function ) => void ;
13541354
1355- export type CancelRequester = ( next : function ) => void ;
1355+ export type CancelRequester = ( next : Function ) => void ;
13561356
1357- export type GetPeerRequester = ( next : function ) => string ;
1357+ export type GetPeerRequester = ( next : Function ) => string ;
13581358
13591359 export interface Requester {
13601360 start ?: MetadataRequester ;
@@ -1443,7 +1443,7 @@ declare module "grpc" {
14431443 * @param message
14441444 */
14451445 cancelWithStatus ( status : StatusObject , message : string ) : void ;
1446-
1446+
14471447 /**
14481448 * Pass a getPeer call down to the base gRPC call (should not be intercepted)
14491449 */
0 commit comments