UNPKG

angular-duo-pane

Version:

A library for Angular projects to easily add a two pane view for desktops, foldables and dual screen devices.

17 lines (16 loc) 639 B
import { AfterViewInit, ChangeDetectorRef, TemplateRef, ViewContainerRef } from '@angular/core'; import { ISegment } from '../../models/ISegment'; export declare class DuoPaneComponent implements AfterViewInit { private changeDetectorRef; viewContainerRef: ViewContainerRef; private embeddedViewRef; private Segment; get segment(): ISegment; set segment(value: ISegment); private ContentTemplateRef; get contentTemplateRef(): TemplateRef<any>; set contentTemplateRef(value: TemplateRef<any>); constructor(changeDetectorRef: ChangeDetectorRef); ngAfterViewInit(): void; private renderView; }