mirror of https://github.com/ColorlibHQ/AdminLTE
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
474 B
17 lines
474 B
5 years ago
|
/**
|
||
|
* A wrapper class around the window object to manage the
|
||
|
* resize event.
|
||
|
*
|
||
|
* When the user resizes the window, Filterizr needs to trigger
|
||
|
* a refiltering of the grid so that the grid items can assume
|
||
|
* their new positions.
|
||
|
*/
|
||
|
export default class BrowserWindow {
|
||
|
private resizeHandler?;
|
||
|
constructor();
|
||
|
private debounceEventHandler;
|
||
|
destroy(): void;
|
||
|
setResizeEventHandler(resizeHandler: EventListener): void;
|
||
|
private removeResizeHandler;
|
||
|
}
|