UNPKG

@dxtmisha/functional-basic

Version:

Core functional utility library for modern web development without framework dependencies

8 lines (7 loc) 365 B
/** * Selects the first element that matches the specified selectors. * * Выбирает первый элемент, который соответствует указанным селекторам. * @param selectors selectors/ селекторы */ export declare function domQuerySelector<E extends Element = Element>(selectors: string): E | undefined;