fix(google-plus): mark login param as required (#2996)

This commit is contained in:
Zac 2019-04-20 00:58:04 +08:00 committed by Daniel Sogl
parent 21dc1f9a56
commit c518c8114d

View File

@ -39,7 +39,7 @@ export class GooglePlus extends IonicNativePlugin {
successIndex: 1, successIndex: 1,
errorIndex: 2 errorIndex: 2
}) })
login(options?: any): Promise<any> { login(options: any): Promise<any> {
return; return;
} }