UNPKG

petals-ui

Version:
17 lines (14 loc) 402 B
interface IMenuComponent { readonly defaultActiveFlag: string; readonly activeFlag: string; readonly defaultOpenFlags: string[]; readonly openFlags: string[]; readonly onSelect: (flag: string) => void; } interface IMenuItemComponent { readonly flag: string; readonly title: string; readonly icon: string; readonly disabled: boolean; } export { IMenuComponent, IMenuItemComponent };