We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fae089 commit 7db13adCopy full SHA for 7db13ad
browser/websocket/makeChanges.ts
@@ -8,9 +8,15 @@ import {
8
parseToRows,
9
} from "../../deps/scrapbox.ts";
10
import type { Change } from "../../deps/socket.ts";
11
-import { HeadData } from "./pull.ts";
12
import { toTitleLc } from "../../title.ts";
13
+export interface HeadData {
14
+ commitId: string;
15
+ persistent: boolean;
16
+ image: string | null;
17
+ linksLc: string[];
18
+ lines: Line[];
19
+}
20
export interface Init {
21
userId: string;
22
head: HeadData;
0 commit comments