Skip to content

Commit

Permalink
🤖 Merge PR DefinitelyTyped#65796 [jsonld] Use different name for loca…
Browse files Browse the repository at this point in the history
…l type and variable by @gabritto
  • Loading branch information
gabritto authored and Desplandis committed Jul 3, 2023
1 parent 037b952 commit aff1e4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/jsonld/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.6

import { Frame, Url, JsonLdProcessor, RemoteDocument, JsonLdObj, JsonLdArray } from './jsonld-spec';
import { Frame, Url, JsonLdProcessor as JsonLdProcessorInterface, RemoteDocument, JsonLdObj, JsonLdArray } from './jsonld-spec';
import {
JsonLdDocument,
ContextDefinition,
Expand Down Expand Up @@ -143,7 +143,7 @@ export function toRDF(input: JsonLdDocument, callback: Callback<RdfDataSet>): vo
export function toRDF(input: JsonLdDocument, options: Options.ToRdf, callback: Callback<RdfDataSet>): void;
export function toRDF(input: JsonLdDocument, options?: Options.ToRdf): Promise<RdfDataSet>;

export let JsonLdProcessor: JsonLdProcessor;
export let JsonLdProcessor: JsonLdProcessorInterface;

// disable autoexport
export {};
Expand Down

0 comments on commit aff1e4d

Please sign in to comment.