@rcsb/rcsb-saguaro
Version:
RCSB 1D Feature Viewer
20 lines (19 loc) • 698 B
TypeScript
import React from "react";
import { RcsbFvContextManager } from "../../RcsbFvContextManager/RcsbFvContextManager";
import { RcsbFvBoardConfigInterface } from "../../RcsbFvConfig/RcsbFvConfigInterface";
interface RowGlowInterface {
readonly boardId: string;
readonly contextManager: RcsbFvContextManager;
readonly boardConfigData: RcsbFvBoardConfigInterface;
}
export declare class RowGlow extends React.Component<RowGlowInterface> {
private subscription;
render(): import("react/jsx-runtime").JSX.Element;
componentDidMount(): void;
componentWillUnmount(): void;
private subscribe;
private updateGlow;
private displayGlow;
private hideGlow;
}
export {};