Add "all" property to results

This commit is contained in:
shamoon
2023-05-06 09:54:45 -07:00
parent c59420581c
commit f124e2a889
4 changed files with 80 additions and 13 deletions

View File

@@ -2,4 +2,6 @@ export interface Results<T> {
count: number
results: T[]
all: number[]
}