/** * LazyVideo * JS Plugin to lazy load videos * * Author: Bogdan Barbu * Team: Codingheads (codingheads.com) */ export default class lazyVideo { /** * Options to be set on the intersection observer */ static observerOptions: IntersectionObserverInit; /** * Initialize a lazy video element */ static initializeVideo(video: HTMLVideoElement): void; static initializer(container?: HTMLElement): void; static cleaner(node: HTMLElement): void; static saveToGlobal(global?: Window & typeof globalThis): void; }