UNPKG

@skyux/core

Version:

This library was generated with [Nx](https://nx.dev).

10 lines (9 loc) 220 B
import { ComponentRef } from '@angular/core'; /** * Represents a dock item's component reference. * @internal */ export interface SkyDockItemReference<T> { componentRef: ComponentRef<T>; stackOrder: number; }