client/menus: refactor

This commit is contained in:
Adorian Doran
2025-09-20 01:08:36 +03:00
parent b26803b627
commit 0b05f597dc
2 changed files with 4 additions and 4 deletions

View File

@@ -14,11 +14,11 @@ export interface ContextMenuOptions<T> {
onHide?: () => void;
}
interface MenuSeparatorItem {
export interface MenuSeparatorItem {
kind: "separator";
}
interface MenuHeader {
export interface MenuHeader {
title: string;
kind: "header";
}