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; }