igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
16 lines (15 loc) • 411 B
TypeScript
import { EventArgs, Point, Type } from "./type";
import { UIElement } from "./UIElement";
/**
* @hidden
*/
export declare class MouseEventArgs extends EventArgs {
static $t: Type;
private _position;
get position(): Point;
set position(a: Point);
private _originalSource;
get originalSource(): any;
set originalSource(a: any);
getPosition(a: UIElement): Point;
}