ship-gis/node_modules/@testing-library/user-event/dist/utils/edit/calculateNewValue.d.ts
2026-01-22 09:14:01 +09:00

8 lines
287 B
TypeScript

export declare function calculateNewValue(newEntry: string, element: HTMLElement, value?: string, selectionRange?: {
selectionStart: number | null;
selectionEnd: number | null;
}, deleteContent?: 'backward' | 'forward'): {
newValue: string;
newSelectionStart: number;
};