add child level context menu

- more typescript
This commit is contained in:
geoffrey45
2022-03-16 01:21:53 +03:00
parent f11005e523
commit 29124ce717
14 changed files with 209 additions and 82 deletions
+10 -1
View File
@@ -29,4 +29,13 @@ interface Artist {
image: string;
}
export { Track, AlbumInfo, Artist };
interface Option {
type?: string;
label?: string;
action?: Function;
children?: Option[] | false;
icon?: string;
critical?: Boolean;
}
export { Track, AlbumInfo, Artist, Option };