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

Todo

import { Todo } from "https://git.sr.ht/~ruivieira/deno-experiments/blob/master/common/tasks/core.ts";
class Todo implements Task {
constructor(
body: string,
status?,
priority?,
);
content: string;
priority: number;
status: Status;
}

§Implements

§Constructors

§
new Todo(body: string, status?, priority?)
[src]

§Properties

§
content: string
[src]
§
priority: number
[src]