/** * lazyScripts * JS Plugin to lazy load scripts * * Author: Bogdan Barbu * Team: Codingheads (codingheads.com) */ export default class lazyScripts { /** * Options to be set on the intersection observer */ static observerOptions: IntersectionObserverInit; static initializeElement: (target: HTMLElement) => void; static initializer(container?: HTMLElement): void; static saveToGlobal(global?: Window & typeof globalThis): void; }