Vector: remove toJSON() from interface (#19254)

This commit is contained in:
Ryan McKinley
2019-09-20 08:22:33 -07:00
committed by GitHub
parent 19f3ec4891
commit 6787e7b5ab
5 changed files with 7 additions and 11 deletions
@@ -401,7 +401,7 @@ export function toDataFrameDTO(data: DataFrame): DataFrameDTO {
name: f.name,
type: f.type,
config: f.config,
values: f.values.toJSON(),
values: f.values.toArray(),
};
});