feat: add ContextMenuItem interface

This commit is contained in:
SauceyRed 2025-07-10 23:55:26 +02:00
parent 704de034b7
commit 11802040bd
Signed by: sauceyred
GPG key ID: 2BF92EB6D8A5CCA7

View file

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