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

Note

import type { Note } from "https://raw.githubusercontent.com/takker99/deno-anki/master/mod.ts";
interface Note {
deck: Deck;
fields: string[];
guid?: string;
id: number;
noteType: NoteType;
tags?: string[];
updated?: number;
}

§Properties

§
fields: string[]
[src]
§
guid?: string
[src]
§
id: number
[src]

note ID

§
noteType: NoteType
[src]
§
tags?: string[]
[src]
§
updated?: number
[src]