molstar
Version:
A comprehensive macromolecular library.
20 lines (19 loc) • 840 B
TypeScript
/**
* Copyright (c) 2026 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author Alexander Rose <alexander.rose@weirdbyte.de>
*/
import { ParamDefinition as PD } from '../../mol-util/param-definition.js';
import { CustomVolumeProperty } from '../common/custom-volume-property.js';
import { Streamlines } from './streamlines/shared.js';
export declare const StreamlinesParams: {
type: PD.Mapped<PD.NamedParams<PD.Normalize<{
seedDensity: number;
stepSize: number;
minSeparation: number;
}>, "basic">>;
};
export type StreamlinesParams = typeof StreamlinesParams;
export type StreamlinesProps = PD.Values<StreamlinesParams>;
export type StreamlinesValue = Streamlines;
export declare const StreamlinesProvider: CustomVolumeProperty.Provider<StreamlinesParams, StreamlinesValue>;