mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add types for zingchart * Adds content header to zingchart * Fixes typedef extends for lint * Fixes version, import, and empty jsdoc comments * Removes last empty jsdoc comment * Allows values and series types to be arrays * Fixes values type
12 lines
197 B
TypeScript
12 lines
197 B
TypeScript
zingchart.render({
|
|
id: 'myChart',
|
|
data: {
|
|
type: 'line',
|
|
series: [
|
|
{
|
|
values: [2, 4, 5, 6, 3, 6, 6, 4, 5, 6],
|
|
},
|
|
],
|
|
},
|
|
});
|