UNPKG

@angular/core

Version:

Angular - the core framework

14 lines (13 loc) 764 B
/** * @license * Copyright Google Inc. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { ElementData, ViewData } from './types'; export declare function attachEmbeddedView(parentView: ViewData, elementData: ElementData, viewIndex: number | undefined | null, view: ViewData): void; export declare function detachEmbeddedView(elementData: ElementData, viewIndex?: number): ViewData | null; export declare function detachProjectedView(view: ViewData): void; export declare function moveEmbeddedView(elementData: ElementData, oldViewIndex: number, newViewIndex: number): ViewData; export declare function renderDetachView(view: ViewData): void;