@rcsb/rcsb-saguaro-app
Version:
RCSB 1D Saguaro Web App
16 lines (15 loc) • 746 B
TypeScript
import { ReturnType, Service } from "@rcsb/rcsb-api-tools/lib/RcsbSearch/Types/SearchEnums";
import { FacetMemberInterface } from "./FacetMemberInterface";
import { FacetStoreInterface } from "./FacetStoreInterface";
declare class EntityGranularitySearchFacetStore implements FacetStoreInterface {
private readonly entryFacet;
private readonly instanceFacet;
private readonly entityFacet;
private readonly nonPolymerFacet;
getServices(): (Service.Text | Service.TextChem)[];
getFacetService(service: Service | "all"): FacetMemberInterface[];
readonly facetLayoutGrid: string[];
readonly returnType: ReturnType;
}
export declare const entityGranularityGroupFacetStore: EntityGranularitySearchFacetStore;
export {};