Skip to content
This repository was archived by the owner on Nov 18, 2025. It is now read-only.

Commit b1eccf9

Browse files
feat: export bundle descriptor in descriptors interface (#744)
* export bundle descriptor in descriptors interface * lint * bundle descriptor is optional in Descriptors
1 parent 01c428c commit b1eccf9

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import {
2020
LongrunningDescriptor,
2121
PageDescriptor,
2222
StreamDescriptor,
23+
BundleDescriptor,
2324
} from './descriptor';
2425
import * as longrunning from './longRunningCalls/longrunning';
2526
import * as operationProtos from '../protos/operations';
@@ -113,6 +114,7 @@ export interface Descriptors {
113114
page: {[name: string]: PageDescriptor};
114115
stream: {[name: string]: StreamDescriptor};
115116
longrunning: {[name: string]: LongrunningDescriptor};
117+
batching?: {[name: string]: BundleDescriptor};
116118
}
117119

118120
export interface Callback<

0 commit comments

Comments
 (0)