Wiebe Beeftink

Results 2 issues of Wiebe Beeftink

# Issue When trying to import Pickr in a TypeScript project, the types add an extra `.default`. This means that instead of `Pickr.create`, TypeScript exposes `Pickr.default.create`. ```js import Pickr from...

```js const toggleDone = async (appointment) => { appointment.isDone = !appointment.isDone; await appointment.saveChanges(); }; ``` This simple function does nothing more than toggling the isDone property. Sadly, when running this,...

bug