UNPKG

@rcsb/rcsb-saguaro-app

Version:
13 lines (12 loc) 551 B
import { QueryPolymer_EntitiesArgs } from "@rcsb/rcsb-api-tools/lib/RcsbGraphQL/Types/Yosemite/GqlTypes"; import { PolymerEntityInstanceInterface } from "./PolymerEntityInstancesCollector"; export interface PolymerEntityInterface { rcsbId: string; entityId: string; entryId: string; instances: PolymerEntityInstanceInterface[]; } export declare class MultiplePolymerEntityCollector { private readonly multipleEntityInstanceCollector; collect(requestConfig: QueryPolymer_EntitiesArgs): Promise<Array<PolymerEntityInterface>>; }