katoikia-app/web-ui/web-react/node_modules/primereact/megamenu/megamenu.d.ts

15 lines
374 B
TypeScript
Raw Normal View History

2022-07-06 04:15:11 +00:00
import * as React from 'react';
import { MenuItem } from '../menuitem';
type MegaMenuOrientationType = 'vertical' | 'horizontal';
export interface MegaMenuProps {
id?: string;
model?: MenuItem[];
style?: object;
className?: string;
orientation?: MegaMenuOrientationType;
}
export declare class MegaMenu extends React.Component<MegaMenuProps, any> { }