(isTokenAutoRefreshEnabled: boolean)
| 72 | } |
| 73 | |
| 74 | activate(isTokenAutoRefreshEnabled: boolean) { |
| 75 | this.native.isTokenAutoRefreshEnabled = isTokenAutoRefreshEnabled; |
| 76 | } |
| 77 | getToken(forceRefresh: boolean): Promise<AppCheckToken> { |
| 78 | return new Promise((resolve, reject) => { |
| 79 | this.native.tokenForcingRefreshCompletion(forceRefresh, (token, error) => { |
nothing calls this directly
no outgoing calls
no test coverage detected