UNPKG

@salla.sa/twilight-components

Version:
24 lines (23 loc) 506 B
export interface GiftToCardDTO { text: string; sender_name: string; receiver: Receiver; quantity: number; deliver_at: string; image_url: string; time_zone?: string; donation_amount?: number; has_apple_pay: boolean; receiverCity?: number; } export interface Receiver { name: string; country_code?: string; mobile_country_code?: string; mobile: string; region_id?: number; } export interface Phone { country_code: string; number: string; }