From 482fb10bc1d4f01bd3de38a0301cda2a2efb491d Mon Sep 17 00:00:00 2001 From: Xiaozhen Liu Date: Wed, 26 Feb 2020 15:36:52 -0800 Subject: [PATCH] feat: export protos in src/index.ts --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index c7557cf4..99569d71 100644 --- a/src/index.ts +++ b/src/index.ts @@ -24,3 +24,5 @@ export {v1, v1beta2, LanguageServiceClient}; // For compatibility with JavaScript libraries we need to provide this default export: // tslint:disable-next-line no-default-export export default {v1, v1beta2, LanguageServiceClient}; +import * as protos from '../protos/protos'; +export {protos};