feat(web): ability to not be able to close the context menu

This commit is contained in:
Luke
2022-09-08 10:05:44 +02:00
parent 105756ef4e
commit adf0994b3f
3 changed files with 12 additions and 3 deletions

View File

@@ -21,5 +21,6 @@ export interface Options {
export interface ContextMenuProps {
title: string;
menu?: string;
canClose?: boolean;
options: Options | Option[];
}