@jahed/sparql-engine
Version:
SPARQL query engine for servers and web browsers.
17 lines (16 loc) • 530 B
TypeScript
import { PipelineEngine } from "./pipeline-engine.ts";
/**
* Singleton class used to access the current pipeline engine
*/
export declare class Pipeline {
/**
* Get the instance of the current pipeline engine
* @return The instance of the current pipeline engine
*/
static getInstance(): PipelineEngine;
/**
* Set the instance of the current pipeline engine
* @param instance - New pipeline engine to use as the current one
*/
static setInstance(instance: PipelineEngine): void;
}