UNPKG

preline

Version:

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

45 lines (42 loc) 1.2 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 IRemoveElementOptions { removeTargetAnimationClass: string; } export interface IRemoveElement { options?: IRemoveElementOptions; destroy(): void; } declare class HSRemoveElement extends HSBasePlugin<IRemoveElementOptions> implements IRemoveElement { private readonly removeTargetId; private readonly removeTarget; private readonly removeTargetAnimationClass; private onElementClickListener; constructor(el: HTMLElement, options?: IRemoveElementOptions); private elementClick; private init; private remove; destroy(): void; static getInstance(target: HTMLElement, isInstance?: boolean): HTMLElement | ICollectionItem<HSRemoveElement>; static autoInit(): void; } export { HSRemoveElement as default, }; export {};