@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.
17 lines (16 loc) • 653 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: unknown;
}[]) => GenericIdentifierType;
autoDiscoverableByDefault: boolean;
}[];
export declare const typeMap: Map<PID, PIDDataType>;
export declare const handleMap: Map<PID, PIDRecord>;
export declare const unresolvables: Set<PID>;