@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
8 lines (7 loc) • 398 B
TypeScript
import type { Generic } from 'adopted-style-sheets';
export declare const autoCompleteOptions: readonly ["on", "off"];
export type AutoCompletePropType = (typeof autoCompleteOptions)[number] | string;
export type PropAutoComplete = {
autoComplete: AutoCompletePropType;
};
export declare const validateAutoComplete: (component: Generic.Element.Component, value?: AutoCompletePropType) => void;