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

Block

import type { Block } from "https://raw.githubusercontent.com/scrapbox-jp/types/0.1.2/mod.ts";

the type which represents a line in a block

interface Block {
end: boolean;
indent: number;
start: boolean;
}

§Properties

§
end: boolean
[src]

is the end line of this block

§
indent: number
[src]

the number of indents

§
start: boolean
[src]

is the start line of this block