Interface StatsCountry

interface StatsCountry {
    code: string;
    count: number;
    name: string;
    value: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

code: string

Country code

count: number

Visitors number

name: string

Country name

value: number

Country ID

Generated using TypeDoc