summaryrefslogtreecommitdiff
path: root/server/frob/itemdb.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/frob/itemdb.ts')
-rw-r--r--server/frob/itemdb.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/frob/itemdb.ts b/server/frob/itemdb.ts
index 5ff943d..721965a 100644
--- a/server/frob/itemdb.ts
+++ b/server/frob/itemdb.ts
@@ -26,7 +26,7 @@ class ItemDB {
this.item_regex = new RegExp(this.item_line);
}
- private parseLine (line) {
+ private parseLine (line: string) {
const match = this.item_regex.exec(line);
if (!(match instanceof Object) || !Reflect.has(match, "groups")) {