UNPKG

@kit-data-manager/pid-component

Version:

The PID-Component is a web component that can be used to evaluate and display FAIR Digital Objects, PIDs, ORCiDs, and possibly other identifiers in a user-friendly way. It is easily extensible to support other identifier types.

15 lines (14 loc) 551 B
import { FunctionalComponent } from '../../stencil-public-runtime'; import { GenericIdentifierType } from '../../utils/GenericIdentifierType'; import '../../components/json-viewer/json-viewer'; export declare class JSONType extends GenericIdentifierType { private _parsedJsonResult; getSettingsKey(): string; quickCheck(): boolean; hasMeaningfulInformation(): Promise<boolean>; init(): Promise<void>; isResolvable(): boolean; renderPreview(): any; renderBody(): FunctionalComponent<never>; private getParsedJson; }