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

Todoist

import { Todoist } from "https://git.sr.ht/~ruivieira/deno-experiments/blob/master/common/tasks/todoist.ts";
class Todoist {
constructor(token: string);
async getActiveTasks(options: TaskOptions): Promise<Array<Task>>;
async getAllActiveTasks(): Promise<Array<Task>>;
}

§Constructors

§
new Todoist(token: string)
[src]

§Methods

§
getActiveTasks(options: TaskOptions): Promise<Array<Task>>
[src]
§
getAllActiveTasks(): Promise<Array<Task>>
[src]