UNPKG

@iktos-oss/rdkit-provider

Version:

exports an initialized RDKit instance, with helper functions

11 lines (10 loc) 369 B
import { RDKitProviderCacheOptions } from '../../contexts'; export declare const initRdkit: ({ rdkitPath, preferCoordgen, removeHs, kekulize, cache }: InitWorkerOptions) => Promise<void>; interface InitWorkerOptions { preferCoordgen: boolean; removeHs: boolean; kekulize: boolean; cache?: RDKitProviderCacheOptions; rdkitPath?: string; } export {};