UNPKG

@buckaroo/buckaroo_sdk

Version:
10 lines (9 loc) 238 B
import { Model } from '../Model'; export default interface IEmail { email: string; } export declare class Email extends Model implements IEmail { constructor(data: IEmail); get email(): string; set email(email: string); }