mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-02 04:43:46 +01:00
11 lines
390 B
TypeScript
11 lines
390 B
TypeScript
|
import {EgwActionObject} from "../egw_action/EgwActionObject";
|
||
|
|
||
|
export interface FindActionTarget
|
||
|
{
|
||
|
/**
|
||
|
* returns the closest Item to the click position, and the corresponding EgwActionObject
|
||
|
* @param _event the click event
|
||
|
* @returns { target:HTMLElement, action:EgwActionObject }
|
||
|
*/
|
||
|
findActionTarget(_event): { target: HTMLElement, action: EgwActionObject };
|
||
|
}
|