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

PendingTaskCount

import type { PendingTaskCount } from "https://aws-api.deno.dev/v0.4/services/swf.ts?docs=full";

Contains the count of tasks in a task list.

interface PendingTaskCount {
count: number;
truncated?: boolean | null;
}

§Properties

§
count: number
[src]

The number of tasks in the task list.

§
truncated?: boolean | null
[src]

If set to true, indicates that the actual count was more than the maximum supported by this API and the count returned is the truncated value.