@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
7 lines (6 loc) • 311 B
TypeScript
import type { Generic } from 'adopted-style-sheets';
export type AriaDescriptionPropType = string;
export type PropAriaDescription = {
ariaDescription: AriaDescriptionPropType;
};
export declare const validateAriaDescription: (component: Generic.Element.Component, value?: AriaDescriptionPropType) => void;