tooot/src/components/contextMenu/index.d.ts

7 lines
159 B
TypeScript

type ContextMenu = {
key: string
item: { onSelect: () => void; disabled: boolean; destructive: boolean; hidden: boolean }
title: string
icon: string
}