interface Cost {
    bookable?: boolean;
    name?: string;
    price: number;
    quantity?: number;
    selected?: boolean;
}

Hierarchy (View Summary)

Properties

bookable?: boolean
name?: string
price: number
quantity?: number
selected?: boolean