Skip to content

Commit 7db13ad

Browse files
committed
🐛 HeadDataの定義がなかった
1 parent 0fae089 commit 7db13ad

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

browser/websocket/makeChanges.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,15 @@ import {
88
parseToRows,
99
} from "../../deps/scrapbox.ts";
1010
import type { Change } from "../../deps/socket.ts";
11-
import { HeadData } from "./pull.ts";
1211
import { toTitleLc } from "../../title.ts";
1312

13+
export interface HeadData {
14+
commitId: string;
15+
persistent: boolean;
16+
image: string | null;
17+
linksLc: string[];
18+
lines: Line[];
19+
}
1420
export interface Init {
1521
userId: string;
1622
head: HeadData;

0 commit comments

Comments
 (0)