UNPKG

@dxtmisha/functional-basic

Version:

Core functional utility library for modern web development without framework dependencies

8 lines (7 loc) 329 B
/** * Returns the position of the mouse cursor or the location of the click (X). * * Возвращает позицию курсора мыши или место нажатия (X). * @param event event object/ объект события */ export declare function getMouseClientX(event: MouseEvent & TouchEvent): number;