@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
9 lines (8 loc) • 384 B
TypeScript
import { HeaderHoverPanelPlugin } from '@docsvision/web/components/table/plugins/hover-panel';
export interface IHoverPanelService {
getPlugins(defaultPlugins: HeaderHoverPanelPlugin[]): HeaderHoverPanelPlugin[];
}
export declare type $HoverPanel = {
hoverPanel: IHoverPanelService;
};
export declare const $HoverPanel: string | ((model?: $HoverPanel) => IHoverPanelService);