From b83bc963d52aa9d7f3788b2aaf39dca7262ca1a5 Mon Sep 17 00:00:00 2001 From: Nathan Arthur Date: Sun, 2 Jun 2024 10:50:28 -0400 Subject: [PATCH] make getField public --- src/row.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/row.ts b/src/row.ts index 57bf369..658e4dd 100644 --- a/src/row.ts +++ b/src/row.ts @@ -36,7 +36,7 @@ export class Row { return parseFloat(this.row.order); } - protected getField(field: string): T { + public getField(field: string): T { return this.row[field] as T; }