Skip to content

Commit

Permalink
feat: export bundle descriptor in descriptors interface (#744)
Browse files Browse the repository at this point in the history
* export bundle descriptor in descriptors interface

* lint

* bundle descriptor is optional in Descriptors
  • Loading branch information
xiaozhenliu-gg5 committed Mar 13, 2020
1 parent 01c428c commit b1eccf9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import {
LongrunningDescriptor,
PageDescriptor,
StreamDescriptor,
BundleDescriptor,
} from './descriptor';
import * as longrunning from './longRunningCalls/longrunning';
import * as operationProtos from '../protos/operations';
Expand Down Expand Up @@ -113,6 +114,7 @@ export interface Descriptors {
page: {[name: string]: PageDescriptor};
stream: {[name: string]: StreamDescriptor};
longrunning: {[name: string]: LongrunningDescriptor};
batching?: {[name: string]: BundleDescriptor};
}

export interface Callback<
Expand Down

0 comments on commit b1eccf9

Please sign in to comment.