@angular/cdk
Version:
Angular Material Component Development Kit
17 lines (16 loc) • 505 B
TypeScript
/**
* @license
* Copyright Google LLC 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 { ViewContainerRef } from '@angular/core';
/**
* Outlet for nested CdkNode. Put `[cdkTreeNodeOutlet]` on a tag to place children dataNodes
* inside the outlet.
*/
export declare class CdkTreeNodeOutlet {
viewContainer: ViewContainerRef;
constructor(viewContainer: ViewContainerRef);
}