UNPKG

@iktos-oss/rdkit-provider

Version:

exports an initialized RDKit instance, with helper functions

5 lines (4 loc) 338 B
import { JSMol, RDKitModule } from '@rdkit/rdkit'; export declare const get_molecules: (listOfSmiles: string[], RDKit: RDKitModule) => (JSMol | null)[]; export declare const get_query_molecules: (listOfSmarts: string[], RDKit: RDKitModule) => (JSMol | null)[]; export declare const release_molecules: (mols: Array<JSMol | null>) => void;