dygraphs: Allow null in DataArray (#41193)

See for example http://dygraphs.com/gallery/#g/independent-series
This commit is contained in:
Vlad-Shcherbina
2019-12-27 18:51:42 +03:00
committed by Andrew Branch
parent 36cc7e0150
commit ddf417283f

View File

@@ -6,7 +6,7 @@
/// <reference types="google.visualization" />
declare namespace dygraphs {
type DataArray = (number|Date)[][];
type DataArray = (number|Date|null)[][];
type Data = string | DataArray | google.visualization.DataTable;