interface Price {
    amount: number;
    currency?: string;
    hint?: string;
}

Properties

amount: number
currency?: string
hint?: string