@anglr/grid
Version:
Angular module displaying grid
11 lines • 390 B
TypeScript
import { ViewContainerRef } from '@angular/core';
/**
* Type that allows storing and sharing view container of 'container' element
*/
export interface CurrentViewContainer {
/**
* View container that is used for rendering content of 'container' element
*/
viewContainer: ViewContainerRef | undefined | null;
}
//# sourceMappingURL=currentViewContainer.interface.d.ts.map