Skip to content

Commit

Permalink
make getField public
Browse files Browse the repository at this point in the history
  • Loading branch information
narthur committed Jun 2, 2024
1 parent ce62c92 commit b83bc96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/row.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class Row<T extends RowType = RowType, R extends Factory = Factory> {
return parseFloat(this.row.order);
}

protected getField<T>(field: string): T {
public getField<T>(field: string): T {
return this.row[field] as T;
}

Expand Down

0 comments on commit b83bc96

Please sign in to comment.