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.
13 lines (12 loc) • 463 B
TypeScript
import type IgcTooltipComponent from './tooltip.js';
type TooltipHideCallback = () => unknown;
declare class TooltipEscapeCallbacks {
private _collection;
private _setListener;
add(instance: IgcTooltipComponent, hideCallback: TooltipHideCallback): void;
remove(instance: IgcTooltipComponent): void;
/** @internal */
handleEvent(event: KeyboardEvent): Promise<void>;
}
declare const service: TooltipEscapeCallbacks;
export default service;