(key: RuntimeSecretKey)
| 152 | } |
| 153 | |
| 154 | getValidationState(key: RuntimeSecretKey): { validated?: boolean; message?: string } { |
| 155 | return { |
| 156 | validated: this.validatedKeys.get(key), |
| 157 | message: this.validationMessages.get(key), |
| 158 | }; |
| 159 | } |
| 160 | |
| 161 | destroy(): void { |
| 162 | this.pendingSecrets.clear(); |
no outgoing calls
no test coverage detected