@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
7 lines (6 loc) • 319 B
TypeScript
import type { Generic } from 'adopted-style-sheets';
export type LinkTargetPropType = '_blank' | '_parent' | '_self' | '_top' | string;
export type PropLinkTarget = {
target: LinkTargetPropType;
};
export declare const validateLinkTarget: (component: Generic.Element.Component, value?: LinkTargetPropType) => void;