/// declare namespace M { class Parallax extends Component { /** * Get Instance */ static getInstance(elem: Element): Parallax; /** * Init Parallax */ static init(els: Element, options?: Partial): Parallax; /** * Init Parallaxs */ static init(els: MElements, options?: Partial): Parallax[]; } interface ParallaxOptions { /** * The minimum width of the screen, in pixels, where the parallax functionality starts working * @default 0 */ responsiveThreshold: number; } } interface JQuery { parallax(options?: Partial): JQuery; parallax(method: keyof Pick): JQuery; }