AdminLTE/plugins/filterizr/utils/getHTMLElement.d.ts
REJack e3888aee85
created new gallery page
- added filterizr to plugins
- created gallery demo
2019-08-28 11:42:16 +02:00

7 lines
261 B
TypeScript
Executable file

/**
* Wrapper around document.querySelector, will function as
* an identity function if an HTML element is passed in
* @param {HTMLElement|string} nodeOrSelector
*/
export declare const getHTMLElement: (selectorOrNode: string | HTMLElement) => HTMLElement;