UNPKG

@ldhop/core

Version:

Follow your nose through linked data resources - core

10 lines (9 loc) 467 B
import type { LdhopQuery, Variable } from './types.js'; export { LdhopEngine } from './LdhopEngine.js'; export { QueryAndStore } from './QueryAndStore.js'; export { fetchRdfDocument, run, type FetchRdfReturnType, } from './utils/helpers.js'; export type * from './types.js'; /** * A helper function to help with typing LdhopQuery and intellisense of the variables */ export declare function ldhopQuery<V extends Variable>(operations: LdhopQuery<V>): LdhopQuery<V>;