The `autoSave` has the wrong type in the typescript definitions. ``` export type StoreOptions = { /** * Auto save on modification with debounce duration in milliseconds */ autoSave?: boolean; }; ``` `autoSave` should be of type number, not boolean.