export type TGetElSiblingsArgs = Parameters; export type TGetElSiblingsReturn = ReturnType; /** * Gets an array of all siblings of given node * @param el{HTMLElement} node * @returns {Array} * @throws {TypeError} getElSiblings: el must be an HTMLElement * @example * // How to get all siblings of `li` DOM-element with specific ID? * //