UNPKG
wsuite-ng-gapi
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
Angular 7+ Google api module ng-gapi
github.com/rubenCodeforges/ng-gapi
rubenCodeforges/ng-gapi
wsuite-ng-gapi
/
lib
/
config
/
GoogleApiConfig.js
11 lines
(10 loc)
•
309 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
var
GoogleApiConfig
=
/**
@class
*/
(
function
(
) {
function
GoogleApiConfig
(
clientConfig
) {
this
.
clientConfig
= clientConfig; }
GoogleApiConfig
.
prototype
.
getClientConfig
=
function
(
) {
return
this
.
clientConfig
; };
return
GoogleApiConfig
; }());
export
{
GoogleApiConfig
};