@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.
16 lines (15 loc) • 609 B
TypeScript
import { PID } from '../rendererModules/Handle/PID';
import { PIDDataType } from '../rendererModules/Handle/PIDDataType';
import { PIDRecord } from '../rendererModules/Handle/PIDRecord';
import { GenericIdentifierType } from './GenericIdentifierType';
export declare const renderers: {
priority: number;
key: string;
constructor: new (value: string, settings?: {
name: string;
value: any;
}[]) => GenericIdentifierType;
}[];
export declare const typeMap: Map<PID, PIDDataType>;
export declare const handleMap: Map<PID, PIDRecord>;
export declare const unresolvables: Set<PID>;