UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

9 lines (8 loc) 394 B
import type { Generic } from 'adopted-style-sheets'; import type { WatchStringOptions } from '../utils'; export type HrefPropType = string; export type PropHref = { href: HrefPropType; }; export type HrefProp = Generic.Element.Members<PropHref, unknown>; export declare const validateHref: (component: Generic.Element.Component, value?: HrefPropType, options?: WatchStringOptions) => void;