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

TaskState

import type { TaskState } from "https://raw.githubusercontent.com/worker-tools/json-stream/master/task-promise.ts";
type TaskState =
| "idle"
| "pending"
| "fulfilled"
| "rejected";

§Type

§
"idle" | "pending" | "fulfilled" | "rejected"
[src]