/** * Data model for Recaptcha Response */ interface IRecpatchaResponse { response: string; isExpired: boolean; } export class RecaptchaResponse implements IRecpatchaResponse { constructor( public response: string, public isExpired: boolean, ) { } }