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

TrelloList

import type { TrelloList } from "https://git.sr.ht/~ruivieira/deno-experiments/blob/master/common/tasks/trello.ts";
interface TrelloList {
closed: boolean;
id: string;
idBoard: string;
name: string;
pos: number;
softLimit?: any;
subscribed: boolean;
}

§Properties

§
closed: boolean
[src]
§
id: string
[src]
§
idBoard: string
[src]
§
name: string
[src]
§
pos: number
[src]
§
softLimit?: any
[src]
§
subscribed: boolean
[src]