@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
9 lines (8 loc) • 408 B
TypeScript
import type { Generic } from 'adopted-style-sheets';
import type { W3CInputValue } from '../types';
import type { Stringified } from '../types/common';
export type SuggestionsPropType = Stringified<W3CInputValue[]>;
export type PropSuggestions = {
suggestions: SuggestionsPropType;
};
export declare const validateSuggestions: (component: Generic.Element.Component, value?: SuggestionsPropType) => void;