I have a dataset
"series": [{
"name": "Events",
"data": [
[0,0],
[0,1],
[2,2],
...
]
}]
What's the proper Typescript interface for this? This is not quite right:
export interface MyInterface {
series: {
name: string;
data: number[]
}
}