Type Alias MonthlySalesVolume

MonthlySalesVolume: {
    month: number;
    salesVolume: Bignumber;
    year: number;
}

Type declaration

  • month: number

    The numerical representation of a month (1-12).

  • salesVolume: Bignumber

    The sales volume for the specified month and year.

  • year: number

    The numerical representation of a year.