AniLink - v1.29.2
    Preparing search index...

    StatusDistribution is an interface representing the distribution of statuses. It includes the status and amount each having their own properties.

    interface StatusDistribution {
        amount: number;
        status: string;
    }
    Index
    amount: number

    amount is a number representing the amount of the status.

    status: string

    status is a string representing the status.