@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
13 lines (12 loc) • 530 B
TypeScript
import type { FillAction } from './utils/FillAction';
type TestInputValueReflectionOptions = {
additionalProperties?: string;
componentName: string;
equalityCheck?: 'toBe' | 'toEqual';
fillAction?: FillAction;
testValue?: unknown;
};
declare const testInputValueReflection: <ElementType extends {
_value?: unknown;
} & (HTMLElement | SVGElement)>({ additionalProperties, componentName, equalityCheck, fillAction, testValue, }: TestInputValueReflectionOptions) => void;
export { testInputValueReflection };