@rcsb/rcsb-saguaro
Version:
RCSB 1D Feature Viewer
20 lines (19 loc) • 773 B
TypeScript
import React from "react";
import { RcsbFvContextManager } from "../../RcsbFvContextManager/RcsbFvContextManager";
import { RcsbScaleInterface } from "../../../RcsbBoard/RcsbD3/RcsbD3ScaleFactory";
import { RcsbSelection } from "../../../RcsbBoard/RcsbSelection";
import { RcsbFvBoardConfigInterface } from "../../RcsbFvConfig/RcsbFvConfigInterface";
import { ReactNode } from "react";
interface AxisRowInterface {
readonly boardId: string;
readonly contextManager: RcsbFvContextManager;
readonly xScale: RcsbScaleInterface;
readonly selection: RcsbSelection;
readonly boardConfigData: RcsbFvBoardConfigInterface;
}
export declare class AxisRow extends React.Component<AxisRowInterface, {
axisKey: string;
}> {
render(): ReactNode;
}
export {};