UNPKG

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.

18 lines (17 loc) 1.04 kB
import { type Context, ContextConsumer, type ContextType } from '@lit/context'; import type { LitElement, ReactiveController, ReactiveControllerHost } from 'lit'; type AsyncContextOptions<T extends Context<unknown, unknown>> = { context: T; callback?: (value: ContextType<T>, dispose?: () => void) => void; subscribe?: boolean; }; export declare class AsyncContextConsumer<T extends Context<unknown, unknown>, Host extends ReactiveControllerHost & HTMLElement> implements ReactiveController { protected _host: Host; protected _options: AsyncContextOptions<T>; protected _consumer?: ContextConsumer<T, Host>; constructor(host: Host, options: AsyncContextOptions<T>); get value(): ContextType<T> | undefined; hostConnected(): Promise<void>; } export declare function createAsyncContext<T extends Context<unknown, unknown>, Host extends ReactiveControllerHost & LitElement>(host: Host, context: T, callback?: (value: ContextType<T>, dispose?: () => void) => void): AsyncContextConsumer<T, Host>; export {};