igniteui-webcomponents
Version:
Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.
17 lines (16 loc) • 605 B
TypeScript
import type { Ref } from 'lit/directives/ref.js';
import type IgcCarouselComponent from '../carousel/carousel.js';
import type IgcTileManagerComponent from '../tile-manager/tile-manager.js';
export type TileManagerContext = {
/** The igc-tile-manager instance. */
instance: IgcTileManagerComponent;
/** The internal CSS grid container of the igc-tile-manager. */
grid: Ref<HTMLElement>;
};
declare const carouselContext: {
__context__: IgcCarouselComponent;
};
declare const tileManagerContext: {
__context__: TileManagerContext;
};
export { carouselContext, tileManagerContext };