rdf-test-suite
Version:
Executes the RDF and SPARQL test suites.
11 lines (10 loc) • 403 B
TypeScript
import type { IDocumentLoader, IJsonLdContext } from 'jsonld-context-parser';
import type { IFetchOptions } from './Util';
/**
* A JSON-LD context document loader that is based on {@link Util#fetchCached}.
*/
export declare class DocumentLoaderCached implements IDocumentLoader {
private readonly options;
constructor(options: IFetchOptions);
load(url: string): Promise<IJsonLdContext>;
}