ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
21 lines (20 loc) • 848 B
TypeScript
/**
* @license
* Copyright Alibaba.com 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://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
import { OnChanges, SimpleChanges, TemplateRef, ViewContainerRef } from '@angular/core';
import { NzSafeAny } from 'ng-zorro-antd/core/types';
export declare class NzStringTemplateOutletDirective implements OnChanges {
private viewContainer;
private templateRef;
private embeddedViewRef;
nzStringTemplateOutletContext: NzSafeAny | null;
nzStringTemplateOutlet: string | TemplateRef<NzSafeAny> | null;
private recreateView;
private updateContext;
constructor(viewContainer: ViewContainerRef, templateRef: TemplateRef<NzSafeAny>);
ngOnChanges(changes: SimpleChanges): void;
}