UNPKG

@spasea/uz-booking-client

Version:
21 lines (20 loc) 398 B
export default interface IWagon { air: string | null; allowBonus: boolean; byWishes: boolean; class: string; free: number; hasBedding: boolean; num: number; obligatoryBedding: boolean; prices: IPrices; railway: number; reservePrice: number; services: string[]; type: string; type_id: string; } interface IPrices { A: number; } export {};