(credentials: AuthCredentials)
| 212 | public broadcast(): void {} |
| 213 | |
| 214 | private async storeCredentials(credentials: AuthCredentials): Promise<void> { |
| 215 | await this.context.secrets.store(this.authCredentialsKey, JSON.stringify(credentials)) |
| 216 | } |
| 217 | |
| 218 | private async loadCredentials(): Promise<AuthCredentials | null> { |
| 219 | const credentialsJson = await this.context.secrets.get(this.authCredentialsKey) |
no test coverage detected