You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
525 B
18 lines
525 B
2 years ago
|
import { fireEvent } from '@testing-library/dom';
|
||
|
export declare function fireInputEvent(element: HTMLElement, { newValue, newSelectionStart, eventOverrides, }: {
|
||
|
newValue: string;
|
||
|
newSelectionStart: number;
|
||
|
eventOverrides: Partial<Parameters<typeof fireEvent>[1]> & {
|
||
|
[k: string]: unknown;
|
||
|
};
|
||
|
}): void;
|
||
|
declare const initial: unique symbol;
|
||
|
declare const onBlur: unique symbol;
|
||
|
declare global {
|
||
|
interface Element {
|
||
|
[initial]?: string;
|
||
|
[onBlur]?: EventListener;
|
||
|
}
|
||
|
}
|
||
|
export {};
|