igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
18 lines (17 loc) • 516 B
TypeScript
import { NormalizedEvent } from "igniteui-webcomponents-core";
import { Type } from "igniteui-webcomponents-core";
/**
* @hidden
*/
export interface INativeCell {
isRemoved: boolean;
onContactStarted(a: NormalizedEvent, b: boolean): void;
onContactCompleted(a: NormalizedEvent, b: boolean): void;
onContactMoved(a: NormalizedEvent, b: boolean): void;
onDoubleClick(a: NormalizedEvent): void;
detach(): void;
}
/**
* @hidden
*/
export declare let INativeCell_$type: Type;