Interface tagListJson

interface tagListJson {
    shortUrls: {
        data: string[] | statsTagJson[];
        pagination: {
            currentPage: number;
            itemsInCurrentPage: number;
            itemsPerPage: number;
            pagesCount: number;
            totalItems: number;
        };
    };
}

Properties

Properties

shortUrls: {
    data: string[] | statsTagJson[];
    pagination: {
        currentPage: number;
        itemsInCurrentPage: number;
        itemsPerPage: number;
        pagesCount: number;
        totalItems: number;
    };
}