mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 01:33:33 +00:00
11 lines
251 B
TypeScript
11 lines
251 B
TypeScript
import { BaseResponse } from "./baseResponse";
|
|
|
|
export class IdentityCaptchaResponse extends BaseResponse {
|
|
siteKey: string;
|
|
|
|
constructor(response: any) {
|
|
super(response);
|
|
this.siteKey = this.getResponseProperty("HCaptcha_SiteKey");
|
|
}
|
|
}
|