Skip to content

Commit cfee918

Browse files
author
Benjamin E. Coe
authored
fix(typescript): cast Object.assign value to ServiceOptions (#483)
1 parent 83d2499 commit cfee918

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/google-apis/auth-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export class RequestHandler extends Service {
9797
const serviceOptions: ServiceOptions = Object.assign(config, {
9898
projectId: pid !== null ? pid : undefined,
9999
customEndpoint: !tryAuthenticate,
100-
});
100+
}) as ServiceOptions;
101101
super(
102102
{
103103
packageJson: pkg,

0 commit comments

Comments
 (0)