Type Alias CacheTaskStatus

CacheTaskStatus:
    | "idle"
    | "loading"
    | "done"
    | "error"
    | "evicted"

The cache task status, represented by a value from the following list:
- 'idle': The task has been created, but has not started downloading content.
- 'loading': The task is currently downloading the content.
- 'done': The task has finished downloading all content.
- 'error': The task has encountered an error while downloading or evicting content.
- 'evicted': All data associated with the task has been removed because the task expired or the user invoked the remove method.