Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion userscript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,15 @@ export interface TimeStamp {
removeAllFormat: () => void;
}

/** built-in UserScript events */
/** built-in UserScript events
*
* | Event | Description |
* | ------ | ----------- |
* | lines:changed | 今開いているページの文章が変更された |
* | page:changed | 別のページに遷移した |
* | layout:changed | 別の種類のページに遷移した |
* | project:changed | 別のprojectに遷移した |
*/
export type eventName =
| "lines:changed"
| "page:changed"
Expand Down