aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib.ts b/src/lib.ts
index c9570bc..821a2e1 100644
--- a/src/lib.ts
+++ b/src/lib.ts
@@ -31,6 +31,7 @@ export function getImagePath(imgName: string): string {
export type SearchSugg = { // Represents a search-string suggestion
name: string,
canonicalName: string | null,
+ pop: number,
};
export type SearchSuggResponse = { // Holds search suggestions and an indication of if there was more
suggs: SearchSugg[],