Skip to content

Commit 726edf9

Browse files
committed
✨ Add scrapbox.Page.lines without detailed syntax information
1 parent f69a161 commit 726edf9

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

scrapbox.d.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,19 @@ export type PageBrief = {
7272
updated: number;
7373
};
7474

75-
export type ParsedLine = {};
75+
export type ParsedLine = {
76+
text: string;
77+
id: string;
78+
userId: string;
79+
updated: number;
80+
created: number;
81+
section: {
82+
number: number;
83+
start: boolean;
84+
end: boolean;
85+
};
86+
title?: boolean;
87+
};
7688

7789
type TimeStamp = {
7890
addFormat: (format: string | (() => string)) => void;

0 commit comments

Comments
 (0)