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

Commit

import type { Commit } from "https://raw.githubusercontent.com/takker99/scrapbox-url-customizer/0.2.2/deps/scrapbox-rest.ts";

Scrapboxのページの編集commit

interface Commit {
changes: Change[];
created: UnixTime;
kind: "page";
pageId: PageId;
parentId: CommitId | null;
userId: UserId;
}

§Properties

§
changes: Change[]
[src]

変更内容

§
created: UnixTime
[src]

commitの作成日時

§
kind: "page"
[src]

詳細不明

§
parentId: CommitId | null
[src]

一つ前のcommitのID

存在しないときはnullになる

§
userId: UserId
[src]

commitの作成者