@rcsb/rcsb-saguaro
Version:
RCSB 1D Feature Viewer
22 lines (21 loc) • 752 B
TypeScript
import React from "react";
import { RcsbFvBoardConfigInterface } from "../../RcsbFvConfig/RcsbFvConfigInterface";
import { RcsbFvContextManager } from "../../RcsbFvContextManager/RcsbFvContextManager";
interface BoardGlowInterface {
readonly boardId: string;
readonly boardConfigData: RcsbFvBoardConfigInterface;
readonly contextManager: RcsbFvContextManager;
}
export declare class BoardGlow extends React.Component<BoardGlowInterface> {
/**Mouse Leave task*/
private hideTask;
private subscription;
render(): import("react/jsx-runtime").JSX.Element;
componentDidMount(): void;
componentWillUnmount(): void;
private subscribe;
private boardHover;
private displayGlow;
private hideGlow;
}
export {};