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

ListItem

import type { ListItem } from "https://googleapis.deno.dev/v1/keep:v1.ts";

A single list item in a note's list.

interface ListItem {
checked?: boolean;
childListItems?: ListItem[];
text?: TextContent;
}

§Properties

§
checked?: boolean
[src]

Whether this item has been checked off or not.

§
childListItems?: ListItem[]
[src]

If set, list of list items nested under this list item. Only one level of nesting is allowed.

§

The text of this item. Length must be less than 1,000 characters.