Skip to content

Commit

Permalink
fix: use typescript import/export for gapics (#611)
Browse files Browse the repository at this point in the history
  • Loading branch information
callmehiphop committed May 16, 2019
1 parent bb26010 commit e882e1a
Show file tree
Hide file tree
Showing 3 changed files with 1,382 additions and 1,357 deletions.
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@
* @property {constructor} SubscriberClient
* Reference to {@link v1.SubscriberClient}.
*/
module.exports.v1 = require('./v1');
const v1 = require('./v1');
export {v1};

export {CallOptions} from 'google-gax';
export {ServiceError} from 'grpc';
Expand Down
Loading

0 comments on commit e882e1a

Please sign in to comment.