All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.keyboard.shared.fireInputEvent.d.ts Maven / Gradle / Ivy

The newest version!
import { fireEvent } from '@testing-library/dom';
export declare function fireInputEvent(element: HTMLElement, { newValue, newSelectionStart, eventOverrides, }: {
    newValue: string;
    newSelectionStart: number;
    eventOverrides: Partial[1]> & {
        [k: string]: unknown;
    };
}): void;
declare const initial: unique symbol;
declare const onBlur: unique symbol;
declare global {
    interface Element {
        [initial]?: string;
        [onBlur]?: EventListener;
    }
}
export {};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy