@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.
19 lines (18 loc) • 625 B
TypeScript
import { FunctionalComponent } from '../../stencil-public-runtime';
import { GenericIdentifierType } from '../../utils/GenericIdentifierType';
export declare class RORType extends GenericIdentifierType {
private static readonly FORMAT_REGEX;
private rorData;
private label;
private acronym;
private relationshipTypes;
private contentMappings;
get data(): unknown;
getSettingsKey(): string;
quickCheck(): boolean;
hasMeaningfulInformation(): Promise<boolean>;
init(): Promise<void>;
renderPreview(): FunctionalComponent;
private getRorId;
private getOptimizedContent;
}