You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
805 B
TypeScript
28 lines
805 B
TypeScript
|
6 years ago
|
import { ChangeDetectorRef } from '@angular/core';
|
||
|
|
import { MenuItem } from '../common/menuitem';
|
||
|
|
export declare class BasePanelMenuItem {
|
||
|
|
private ref;
|
||
|
|
constructor(ref: ChangeDetectorRef);
|
||
|
|
handleClick(event: any, item: any): void;
|
||
|
|
}
|
||
|
|
export declare class PanelMenuSub extends BasePanelMenuItem {
|
||
|
|
item: MenuItem;
|
||
|
|
expanded: boolean;
|
||
|
|
transitionOptions: string;
|
||
|
|
constructor(ref: ChangeDetectorRef);
|
||
|
|
}
|
||
|
|
export declare class PanelMenu extends BasePanelMenuItem {
|
||
|
|
model: MenuItem[];
|
||
|
|
style: any;
|
||
|
|
styleClass: string;
|
||
|
|
multiple: boolean;
|
||
|
|
transitionOptions: string;
|
||
|
|
animating: boolean;
|
||
|
|
constructor(ref: ChangeDetectorRef);
|
||
|
|
collapseAll(): void;
|
||
|
|
handleClick(event: any, item: any): void;
|
||
|
|
onToggleDone(): void;
|
||
|
|
}
|
||
|
|
export declare class PanelMenuModule {
|
||
|
|
}
|