/** * Copyright (c) 2019 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { ShapeGetter } from '../../mol-repr/shape/representation.js'; import { Geometry, GeometryUtils } from '../../mol-geo/geometry/geometry.js'; export interface ShapeProvider> { label: string; data: D; params: P; getShape: ShapeGetter; geometryUtils: GeometryUtils; }