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 (Y). * * Возвращает позицию курсора мыши или место нажатия (Y). * @param event event object/ объект события */ export declare function getMouseClientY(event: MouseEvent & TouchEvent): number;