Phase d cleanup

This commit is contained in:
Zerebos
2026-05-23 22:16:40 -04:00
parent 074147f64f
commit 0e93908bb2
29 changed files with 388 additions and 1413 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
<script lang="ts">
export interface MenuItem {
interface MenuItem {
label: string
icon?: any
onClick: () => void
@@ -9,11 +9,11 @@
children?: MenuEntry[]
}
export interface MenuSeparator {
interface MenuSeparator {
separator: true
}
export type MenuEntry = MenuItem | MenuSeparator
type MenuEntry = MenuItem | MenuSeparator
interface Props {
x: number