Skip to content

Commit

Permalink
d.ts file: SeriesMetaInfo.type made optional. fix #12
Browse files Browse the repository at this point in the history
  • Loading branch information
simzer committed Oct 16, 2021
1 parent 99dfb46 commit 690a55b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/weblib/js-api/vizzu.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ interface SeriesMetaInfo
If not set, the library will attempt to determine the type based on
the type of the first value. Number type will result in measure,
string type will result in dimension. */
type: 'dimension'|'measure';
type?: 'dimension'|'measure';
}

/** Represents a categorical or data value */
Expand Down

0 comments on commit 690a55b

Please sign in to comment.