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

Line

import type { Line } from "https://raw.githubusercontent.com/scrapbox-jp/types/0.3.3/userscript.ts";
type Line = BaseLine & {
section: {
number: number;
start: boolean;
end: boolean;
}
;
}
& (
| {
title?: true;
}
| {
codeBlock: CodeBlock;
}
| {
tableBlock: TableBlock;
}
| {
helpfeel: Helpfeel;
}
| {
cli: Cli;
}
| {
numberList?: {
digit: number;
}
;
formulaLine?: true;
nodes: Node | NodeWithoutIndent[];
}
)
;

§Type

§
BaseLine & {
section: {
number: number;
start: boolean;
end: boolean;
}
;
}
& (
| {
title?: true;
}
| {
codeBlock: CodeBlock;
}
| {
tableBlock: TableBlock;
}
| {
helpfeel: Helpfeel;
}
| {
cli: Cli;
}
| {
numberList?: {
digit: number;
}
;
formulaLine?: true;
nodes: Node | NodeWithoutIndent[];
}
)
[src]