UNPKG

molstar-svelte

Version:

Mol* Svelte Components

20 lines (19 loc) 689 B
import { SvelteComponent } from "svelte"; import type { BuiltInTrajectoryFormat } from 'molstar/lib/mol-plugin-state/formats/trajectory.js'; declare const __propDef: { props: { url: string; type: BuiltInTrajectoryFormat; chainId: string; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type StructureUrlChainProps = typeof __propDef.props; export type StructureUrlChainEvents = typeof __propDef.events; export type StructureUrlChainSlots = typeof __propDef.slots; export default class StructureUrlChain extends SvelteComponent<StructureUrlChainProps, StructureUrlChainEvents, StructureUrlChainSlots> { } export {};