@w11k/ngx-present
Version:
Angular based Presentation Tool
14 lines (13 loc) • 601 B
TypeScript
import { AfterViewInit } from '@angular/core';
import { OnDestroyMixin } from '@w11k/ngx-componentdestroyed';
import { EventService } from '../core/event.service';
import { PresentationService } from '../core/presentation.service';
export declare class ContainerComponent extends OnDestroyMixin implements AfterViewInit {
private readonly presentation;
private readonly events;
private sideNav;
constructor(presentation: PresentationService, events: EventService);
ngAfterViewInit(): void;
onSideNavClose(opened: boolean): void;
onKeyPressed(event: KeyboardEvent): void;
}