@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
9 lines (8 loc) • 516 B
TypeScript
import type { Generic } from 'adopted-style-sheets';
declare const alternativeButtonLinkRolePropTypeOptions: readonly ["button", "link", "tab", "treeitem"];
export type AlternativeButtonLinkRolePropType = (typeof alternativeButtonLinkRolePropTypeOptions)[number];
export type PropAlternativeButtonLinkRole = {
role: AlternativeButtonLinkRolePropType;
};
export declare const validateAlternativeButtonLinkRole: (component: Generic.Element.Component, value?: AlternativeButtonLinkRolePropType) => void;
export {};