forked from htmlstreamofficial/preline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
remove-element.d.ts
37 lines (33 loc) · 923 Bytes
/
remove-element.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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 IRemoveElementOptions {
removeTargetAnimationClass: string;
}
export interface IRemoveElement {
options?: IRemoveElementOptions;
}
declare class HSRemoveElement extends HSBasePlugin<IRemoveElementOptions> implements IRemoveElement {
private readonly removeTargetId;
private readonly removeTarget;
private readonly removeTargetAnimationClass;
constructor(el: HTMLElement, options?: IRemoveElementOptions);
private init;
private remove;
static autoInit(): void;
}
export {
HSRemoveElement as default,
};
export {};