/*! * Copyright (c) 2026 Interop Alliance. All rights reserved. */ export type ILDType = string | string[]; /** * @deprecated Renamed to ILDType. */ export type ILdType = ILDType; export type ILDContext = string | Array>; export interface IImageObject { id: string; type?: ILDType; [x: string]: any; } export interface ILinkedDataObject { id?: string; type?: ILDType; name?: string; description?: string; image?: string | IImageObject; } //# sourceMappingURL=LD.d.ts.map