- Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsmart.menuitem.d.ts
34 lines (34 loc) · 1.22 KB
/
smart.menuitem.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import{MenuItem}from'./../index';
import{AfterViewInit,ElementRef,OnInit,OnChanges,OnDestroy,SimpleChanges}from'@angular/core';
import{BaseElement}from'./smart.element';
export{ElementRenderMode}from'./../index';
export{Smart}from'./smart.element';
export{MenuItem}from'./../index';
exportdeclareclassMenuItemComponentextendsBaseElementimplementsOnInit,AfterViewInit,OnDestroy,OnChanges{
constructor(ref: ElementRef<MenuItem>);
privateeventHandlers;
nativeElement: MenuItem;
/** @description Creates the component on demand.
* @param properties An optional object of properties, which will be added to the template binded ones.
*/
createComponent(properties?: {}): any;
/** @description */
checked: boolean;
/** @description Enables or disables element. */
disabled: boolean;
/** @description */
label: any;
/** @description */
level: number;
/** @description */
separator: boolean;
/** @description */
shortcut: string;
/** @description */
value: any;
readonlyisRendered: boolean;
ngOnInit(): void;
ngAfterViewInit(): void;
ngOnDestroy(): void;
ngOnChanges(changes: SimpleChanges): void;
}