UNPKG

346 BJavaScriptView Raw
1class GoogleAuthData {
2 constructor(options) {
3 this.equals = this.equals.bind(this);
4 this.toJSON = this.toJSON.bind(this);
5 }
6 equals(other) {
7 return other && other instanceof GoogleAuthData;
8 }
9 toJSON() {
10 return {};
11 }
12}
13export default GoogleAuthData;
14//# sourceMappingURL=GoogleAuthData.js.map
\No newline at end of file