UNPKG

@public-ui/components

Version:

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

9 lines (8 loc) 413 B
import type { Generic } from 'adopted-style-sheets'; import type { AccessKeyPropType } from './access-key'; import type { ShortKeyPropType } from './short-key'; export type BadgeTextPropType = AccessKeyPropType | ShortKeyPropType; export type PropBadgeText = { badgeText: BadgeTextPropType; }; export declare const validateBadgeText: (component: Generic.Element.Component, value?: BadgeTextPropType) => void;