UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

8 lines (7 loc) 349 B
import type { SimpleProp } from './helpers/factory'; export type ClampedNumberValueProp = SimpleProp<'value', number>; export type ClampedNumberValueDeps = { min: number; max: number; }; export declare const clampedNumberValueProp: import("./helpers/factory").DependentPropDefinition<number, ClampedNumberValueDeps, ClampedNumberValueProp>;