save a numeric height value to Healthkit`saveHeight` accepts an options object containing a numeric height value:```javascriptletoptions={value:200// Inches}``````javascriptAppleHealthkit.saveHeight(options:Object,(err:Object,results:Object)=>{if(err){return;}// height successfully saved});```