molstar
Version:
A comprehensive macromolecular library.
16 lines (15 loc) • 688 B
TypeScript
/**
* Copyright (c) 2017-2024 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author David Sehnal <david.sehnal@gmail.com>
*/
import { Structure } from '../structure';
import { StructureSelection } from './selection';
import { QueryFn, QueryContextOptions } from './context';
interface StructureQuery extends QueryFn<StructureSelection> {
}
declare namespace StructureQuery {
function run(query: StructureQuery, structure: Structure, options?: QueryContextOptions): StructureSelection;
function loci(query: StructureQuery, structure: Structure, options?: QueryContextOptions): import("../structure/element/loci").Loci;
}
export { StructureQuery };