UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

10 lines (9 loc) 371 B
import { FlowrConfig, type KnownEngines } from './config'; /** * Retrieve all requested engine instance. * Please make sure that if this includes the R engine, that you properly shut it down again! */ export declare function retrieveEngineInstances(config: FlowrConfig, defaultOnly?: boolean): Promise<{ engines: KnownEngines; default: keyof KnownEngines; }>;