Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TaskState

Represents the state of bundle loading tasks.

Both 'Error' and 'Success' are sinking state: task will abort or complete and there will be no more updates after they are reported.

type TaskState = "Error" | "Running" | "Success";

§Type

§
"Error" | "Running" | "Success"
[src]