Skip to content

Commit

Permalink
fix: fixed compile error of invalid export (#2362)
Browse files Browse the repository at this point in the history
  • Loading branch information
HachimanHiki committed Sep 22, 2020
1 parent a0c4c7c commit 3e98a0d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
import {GoogleApis} from './googleapis';
const google = new GoogleApis();
export {google, GoogleApis};
export * as Common from 'googleapis-common';
export * as Auth from 'google-auth-library';
import * as Common from 'googleapis-common';
import * as Auth from 'google-auth-library';
export {Common, Auth};

export {abusiveexperiencereport_v1} from './apis/abusiveexperiencereport/v1';
export {acceleratedmobilepageurl_v1} from './apis/acceleratedmobilepageurl/v1';
Expand Down

0 comments on commit 3e98a0d

Please sign in to comment.