igniteui-react-grids
Version:
Ignite UI React grid components.
26 lines (25 loc) • 811 B
TypeScript
import { Base, Type } from "igniteui-react-core";
import { WCNativeHelper } from "igniteui-react";
import { BaseExporter } from "./BaseExporter";
import { ExporterOptionsBase } from "./ExporterOptionsBase";
import { GridBaseDirective } from "./GridBaseDirective";
/**
* @hidden
*/
export declare class ExporterEventArgsDetail extends Base {
static $t: Type;
private d;
protected get e(): WCNativeHelper;
private g;
protected get nativeElement(): any;
protected set nativeElement(a: any);
setNativeElement(a: any): void;
get a(): BaseExporter;
set a(a: BaseExporter);
get b(): ExporterOptionsBase;
set b(a: ExporterOptionsBase);
get c(): GridBaseDirective;
set c(a: GridBaseDirective);
get f(): boolean;
set f(a: boolean);
}