@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
8 lines (7 loc) • 357 B
TypeScript
import type { Generic } from 'adopted-style-sheets';
import type { WatchNumberOptions } from '../utils';
export type MaxLengthPropType = number;
export type PropMaxLength = {
maxLength: MaxLengthPropType;
};
export declare const validateMaxLength: (component: Generic.Element.Component, value?: MaxLengthPropType, options?: WatchNumberOptions) => void;