Skip to content

Commit

Permalink
fix: fix lint error for generic
Browse files Browse the repository at this point in the history
  • Loading branch information
ajaxlab committed Dec 3, 2021
1 parent bb1dfcc commit 2714dc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export interface TargetIds {
export interface DataRow<T=number> {
id: string;
id_org: string; // eslint-disable-line camelcase
values: DataItem<T>[];
values: Array<DataItem<T>>;
}

export interface DataItem<T=number> {
Expand Down

0 comments on commit 2714dc1

Please sign in to comment.