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

NoteType

import type { NoteType } from "https://raw.githubusercontent.com/takker99/deno-anki/master/mod.ts";
interface NoteType {
css?: string;
deck?: Deck;
fields: Field[] | string[];
id: number;
isCloze?: boolean;
latex?: [string, string];
name: string;
templates: Template[];
updated?: number;
}

§Properties

§
css?: string
[src]
§
fields: Field[] | string[]
[src]
§
id: number
[src]

note type ID

§
isCloze?: boolean
[src]
§
latex?: [string, string]
[src]
§
name: string
[src]
§
templates: Template[]
[src]
§
updated?: number
[src]