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

ImportedLine

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

インポート用メタデータ付き行データ

interface ImportedLine {
created?: number;
text: string;
updated?: number;
}

§Properties

§
created?: number
[src]

行の最終作成日時 (UNIX時刻)

§
text: string
[src]

line text

§
updated?: number
[src]

行の最終更新日時 (UNIX時刻)