nakedobjects.spa
Version:
Single Page Application client for a Naked Objects application.
14 lines (13 loc) • 617 B
TypeScript
import { QueryList, OnDestroy, AfterViewInit } from '@angular/core';
import { IActionHolder } from '../action/action.component';
import { IMenuHolderViewModel } from '../view-models/imenu-holder-view-model';
import { ActionComponent } from '../action/action.component';
export declare class ActionBarComponent implements OnDestroy, AfterViewInit {
actions: IActionHolder[];
menuHolder: IMenuHolderViewModel;
actionChildren: QueryList<ActionComponent>;
focusOnFirstAction(actions: QueryList<ActionComponent>): void;
private sub;
ngAfterViewInit(): void;
ngOnDestroy(): void;
}