UNPKG

preline

Version:

Preline UI is an open-source set of prebuilt UI components based on the utility-first Tailwind CSS framework.

53 lines (50 loc) 1.34 kB
export interface IBasePlugin<O, E> { el: E; options?: O; events?: {}; } declare class HSBasePlugin<O, E = HTMLElement> implements IBasePlugin<O, E> { el: E; options: O; events?: any; constructor(el: E, options: O, events?: any); createCollection(collection: any[], element: any): void; fireEvent(evt: string, payload?: any): any; on(evt: string, cb: Function): void; } export interface ICollectionItem<T> { id: string | number; element: T; } export interface IScrollspyOptions { ignoreScrollUp?: boolean; } export interface IScrollspy { options?: IScrollspyOptions; destroy(): void; } declare class HSScrollspy extends HSBasePlugin<IScrollspyOptions> implements IScrollspy { private readonly ignoreScrollUp; private readonly links; private readonly sections; private readonly scrollableId; private readonly scrollable; private isScrollingDown; private lastScrollTop; private onScrollableScrollListener; private onLinkClickListener; constructor(el: HTMLElement, options?: {}); private scrollableScroll; private init; private determineScrollDirection; private linkClick; private update; private scrollTo; destroy(): void; static getInstance(target: HTMLElement, isInstance?: boolean): HTMLElement | ICollectionItem<HSScrollspy>; static autoInit(): void; } export { HSScrollspy as default, }; export {};