UNPKG

sentinel-js

Version:

JS library that detects new DOM nodes using CSS selectors

6 lines (5 loc) 268 B
declare module 'sentinel-js' { export function on<T = HTMLElement>(cssSelectors: string | string[], callback: (el: T) => void): void export function off<T = HTMLElement>(event: string | string[], callback?: (el: T) => void): void export function reset(): void }