@iktos-oss/rdkit-provider
Version:
exports an initialized RDKit instance, with helper functions
10 lines (9 loc) • 336 B
TypeScript
import { RDKitProviderCacheOptions } from '../../contexts';
export declare const initRdkit: ({ rdkitPath, preferCoordgen, removeHs, cache }: InitWorkerOptions) => Promise<void>;
interface InitWorkerOptions {
preferCoordgen: boolean;
removeHs: boolean;
cache?: RDKitProviderCacheOptions;
rdkitPath?: string;
}
export {};