Source: constants/dom.js

/**
 * @module constants/dom
 */

/**
 * @constant appButton
 * @description App button
 * @type {HTMLElement}
 * @see {@link module:scripts|scripts.js}
 */
export const appButton = document.getElementById("appButton");

/**
 * @constant appContent
 * @description App content
 * @type {HTMLElement}
 * @see {@link module:components/filter~filterSetAction|filterSetAction}
 * @see {@link module:services/api~apiAddLink|apiAddLink}
 * @see {@link module:components/filter~filterRemoveContent|filterRemoveContent}
 * @see {@link module:components/search~searchCreate|searchCreate}
 * @see {@link module:components/search~searchRemove|searchRemove}
 * @see {@link module:components/pagination~paginationCreate|paginationCreate}
 * @see {@link module:components/pagination~paginationRemove|paginationRemove}
 * @see {@link module:scripts|scripts.js}
 */
export const appContent = document.getElementById("appContent");