@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.
10 lines (9 loc) • 369 B
TypeScript
import { FunctionalComponent } from '../stencil-public-runtime';
import { GenericIdentifierType } from '../utils/GenericIdentifierType';
export declare class LocaleType extends GenericIdentifierType {
getSettingsKey(): string;
hasCorrectFormat(): boolean;
init(): Promise<void>;
isResolvable(): boolean;
renderPreview(): FunctionalComponent<any>;
}