@rcsb/rcsb-saguaro-app
Version:
RCSB 1D Saguaro Web App
9 lines (8 loc) • 401 B
TypeScript
import { FacetMemberInterface } from "./FacetMemberInterface";
import { ReturnType, Service } from "@rcsb/rcsb-api-tools/lib/RcsbSearch/Types/SearchEnums";
export interface FacetStoreInterface {
getServices(): (Service.Text | Service.TextChem)[];
getFacetService(service: Service | "all"): FacetMemberInterface[];
readonly facetLayoutGrid: string[];
readonly returnType: ReturnType;
}