Interface statsTagJson

interface statsTagJson {
    shortUrlsCount: number;
    tag: string;
    visitsSummary: {
        bots: number;
        nonBots: number;
        total: number;
    };
}

Properties

shortUrlsCount: number
tag: string
visitsSummary: {
    bots: number;
    nonBots: number;
    total: number;
}