-
Notifications
You must be signed in to change notification settings - Fork 36
Open
Description
I think "true" should be "boolean", the following returns an error
const {store: positionStore, state: positionState} = asyncReadable(
{},
async () => {
const response = await fetch(URL_API + 'positions');
const userObject = await response.json();
console.log(userObject)
return userObject;
},
{ reloadable: false, trackState: true }
);Type 'false' is not assignable to type 'true'.ts(2322)
(property) reloadable?: true
Metadata
Metadata
Assignees
Labels
No labels