UNPKG

@treecg/ldes-orchestrator

Version:

Fills the gaps that a Linked Data Platform (LDP) cannot do by itself for creating a Linked Data Event Stream (LDES) in LDP.

20 lines (19 loc) 598 B
import { Store } from "n3"; export declare function solidUrl(): string; /** * Start a solid server with public AC and file backend * @returns {Promise<void>} */ export declare function runSolid(): Promise<void>; /** * Finishes if the CSS is already running * @returns {Promise<void>} */ export declare function isRunning(): Promise<void>; /** * Convert a file as a store (given a path). Default will use text/turtle as content type * @param path * @param contentType * @returns {Promise<Store>} */ export declare function fileAsStore(path: string, contentType?: string): Promise<Store>;