UNPKG

@buckaroo/buckaroo_sdk

Version:
12 lines (11 loc) 289 B
import { Model } from '../Model'; export default interface IPhone { landline?: string; mobile?: string; fax?: string; } export declare class Phone extends Model implements IPhone { set landline(landline: string); set mobile(mobile: string); set fax(fax: string); }