UNPKG
@chemistry/mol3dview
Version:
latest (2.1.2)
2.1.2
2.1.1
2.1.0
2.0.5
2.0.4
Crystal Structure Viewer
github.com/vreshch/mol3dview
vreshch/mol3dview
@chemistry/mol3dview
/
dist
/
src
/
molecule3d
/
Bond.d.ts
8 lines
(7 loc)
•
180 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Atom
}
from
"./Atom"
;
export
declare
class
Bond
{
atom1
:
Atom
;
atom2
:
Atom
;
order
:
number
;
constructor
(
atom1
:
Atom
,
atom2
:
Atom
,
order
?:
number
); }