52North / helgoland-toolbox

Collection of tools for a sensor observation based client
https://52north.github.io/helgoland-toolbox/
Other
13 stars 16 forks source link

Make TimeValueEntry type safe #131

Open ChrisMalewski opened 3 years ago

ChrisMalewski commented 3 years ago

export interface TimeValueEntry extends IDataEntry { timestamp: number; value: number;}

value should be nullable ->

export interface TimeValueEntry extends IDataEntry { timestamp: number; value: number | null;}

ThisisMS11 commented 1 year ago

why is this issue still open when commit has already been made ?