import Gecobject from './Gecobject'; /** * The document matching EmailCheck. */ export default interface EmailCheck extends Gecobject { /** * The email to be checked. */ readonly email: string; /** * The token sent for email control. */ readonly token: string; }