/** * add a class on object when they come into view * * Author: Bogdan Barbu * Team: Codingheads (codingheads.com) */ export default class animate { /** * Options to be set on the intersection observer */ static observerOptions: { rootMargin: string; }; /** * Initialize an animated element */ static initializeElement: (target: HTMLElement) => void; /** * initializer to be used with lazyLoadAssets */ static initializer(container?: HTMLElement): void; static cleaner(node: HTMLElement): void; }