openchemlib 8.4.0 → 8.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/openchemlib-core.js +143 -142
- package/dist/openchemlib-full.js +156 -156
- package/dist/openchemlib-full.pretty.js +202 -185
- package/dist/openchemlib-minimal.js +109 -109
- package/package.json +1 -1
- package/types.d.ts +9 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -463,8 +463,17 @@ export declare class Molecule {
|
|
|
463
463
|
options?: IMoleculeToSVGOptions,
|
|
464
464
|
): string;
|
|
465
465
|
|
|
466
|
+
/**
|
|
467
|
+
* Get an ID code for the molecule
|
|
468
|
+
* @param flag
|
|
469
|
+
*/
|
|
466
470
|
getCanonizedIDCode(flag: number): string;
|
|
467
471
|
|
|
472
|
+
/**
|
|
473
|
+
* Returns the canonic numbering of the atoms.
|
|
474
|
+
*/
|
|
475
|
+
getFinalRanks(flag: number): number[];
|
|
476
|
+
|
|
468
477
|
/**
|
|
469
478
|
* Returns an object with both the ID code and coordinates of the molecule.
|
|
470
479
|
*/
|