mirror of
https://github.com/itflow-org/itflow
synced 2026-03-27 07:45:37 +00:00
Updated AdminLTE to 3.04 assets, added search to side bar, added company select drop down on sidebar. removed extra delete under edit contact
This commit is contained in:
16
plugins/filterizr/FilterizrElement.d.ts
vendored
Normal file
16
plugins/filterizr/FilterizrElement.d.ts
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
import { Destructible, Dimensions, Resizable, Styleable } from './types/interfaces';
|
||||
import FilterizrOptions from './FilterizrOptions';
|
||||
import EventReceiver from './EventReceiver';
|
||||
import StyledFilterizrElement from './StyledFilterizrElement';
|
||||
export default abstract class FilterizrElement implements Destructible, Resizable, Styleable {
|
||||
node: Element;
|
||||
options: FilterizrOptions;
|
||||
protected eventReceiver: EventReceiver;
|
||||
constructor(node: Element, options: FilterizrOptions);
|
||||
readonly dimensions: Dimensions;
|
||||
destroy(): void | Promise<void>;
|
||||
trigger(eventType: string): void;
|
||||
abstract readonly styles: StyledFilterizrElement;
|
||||
protected abstract bindEvents(): void;
|
||||
protected abstract unbindEvents(): void;
|
||||
}
|
||||
Reference in New Issue
Block a user