feature: display total size by tag or tracker of torrents on sidebar (#369)

Bug: #244
This commit is contained in:
Saber
2021-07-15 00:28:15 +08:00
committed by GitHub
parent aa75f44c70
commit ad764648dd
7 changed files with 63 additions and 4 deletions

View File

@@ -1,5 +1,7 @@
export interface Taxonomy {
statusCounts: Record<string, number>;
tagCounts: Record<string, number>;
tagSizes: Record<string, number>;
trackerCounts: Record<string, number>;
trackerSizes: Record<string, number>;
}