UNPKG

primereact

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primereact.svg)](https://badge.fury.io/js/primereact) [![Discord Chat](https://img.shields.io/discord/5579

21 lines (18 loc) 506 B
import * as React from 'react'; import {MenuItem} from '../menuitem/MenuItem'; import {SyntheticEvent} from "react"; interface TieredMenuProps { id?: string; model?: MenuItem[]; popup?: boolean; style?: object; className?: string; autoZIndex?: boolean; bazeZIndex?: number; appendTo?: any; onShow?(e: Event): void; onHide?(e: Event): void; } export class TieredMenu extends React.Component<TieredMenuProps, any> { public toggle(event: SyntheticEvent): void; }