15 lines
374 B
TypeScript
15 lines
374 B
TypeScript
|
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> { }
|