Implement Replies #29

Merged
sauceyred merged 21 commits from replies into main 2025-07-11 01:39:45 +00:00
Showing only changes of commit 11802040bd - Show all commits

View file

@ -83,3 +83,8 @@ export interface ScrollPosition {
offsetTop: number,
offsetLeft: number
}
export interface ContextMenuItem {
name: string,
callback: (...args: any[]) => any;
}