🤖 Merge PR #65796 [jsonld] Use different name for local type and variable by @gabritto

This commit is contained in:
Gabriela Araujo Britto
2023-06-16 14:53:45 -03:00
committed by GitHub
parent 37f59bd089
commit d22a9ecb7a

View File

@@ -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,
@@ -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 {};