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.

14 lines (13 loc) 495 B
import { FunctionalComponent } from '../../stencil-public-runtime'; import { GenericIdentifierType } from '../../utils/GenericIdentifierType'; export declare class HandleType extends GenericIdentifierType { private _parts; private _pidRecord; get data(): string; quickCheck(): boolean; hasMeaningfulInformation(): Promise<boolean>; init(data?: string): Promise<void>; isResolvable(): boolean; renderPreview(): FunctionalComponent; getSettingsKey(): string; }