ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
8 lines (7 loc) • 345 B
TypeScript
export interface PointerCapture {
eElement: HTMLElement | null;
pointerId: number;
onLost: ((event: PointerEvent) => void) | null;
}
export declare const capturePointer: (eElement: HTMLElement, mouseEvent: Event | Touch) => PointerCapture | null;
export declare const releasePointerCapture: (capture: PointerCapture | null) => void;