Merge pull request #25951 from protyagov/master

[Dygraphs]: Allow Date type for input data array
This commit is contained in:
Benjamin Lichtman
2018-05-31 21:04:43 -07:00
committed by GitHub

View File

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