@rcsb/rcsb-saguaro-app
Version:
RCSB 1D Saguaro Web App
9 lines (8 loc) • 359 B
TypeScript
import { RcsbChartInterface } from "../../../../RcsbSeacrh/FacetTools";
export interface ResidueChartInterface {
granularity: "entry" | "assembly" | "instance" | "entity";
rcsbId: string;
}
export declare namespace ResidueChartTools {
function getResidueDistribution(residueChart: ResidueChartInterface): Promise<Promise<RcsbChartInterface[]>>;
}