Skip to content

Commit 3e98a0d

Browse files
authored
fix: fixed compile error of invalid export (#2362)
1 parent a0c4c7c commit 3e98a0d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/index.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@
1515
import {GoogleApis} from './googleapis';
1616
const google = new GoogleApis();
1717
export {google, GoogleApis};
18-
export * as Common from 'googleapis-common';
19-
export * as Auth from 'google-auth-library';
18+
import * as Common from 'googleapis-common';
19+
import * as Auth from 'google-auth-library';
20+
export {Common, Auth};
2021

2122
export {abusiveexperiencereport_v1} from './apis/abusiveexperiencereport/v1';
2223
export {acceleratedmobilepageurl_v1} from './apis/acceleratedmobilepageurl/v1';

0 commit comments

Comments
 (0)