UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

35 lines (34 loc) 1.57 kB
import * as React from 'react'; import { CancelableBrowserEventArgsDetail } from "./CancelableBrowserEventArgsDetail"; import { ContentChildrenManager } from "igniteui-react-core"; export declare abstract class IgrCancelableBrowserEventArgsDetail<P extends IIgrCancelableBrowserEventArgsDetailProps = IIgrCancelableBrowserEventArgsDetailProps> extends React.Component<P, {}> { protected createImplementation(): CancelableBrowserEventArgsDetail; protected _implementation: any; protected mounted: boolean; get nativeElement(): HTMLElement; /** * @hidden */ get i(): CancelableBrowserEventArgsDetail; /** * @hidden */ static _createFromInternal(internal: any): IgrCancelableBrowserEventArgsDetail; protected onImplementationCreated(): void; protected _contentChildrenManager: ContentChildrenManager; constructor(props: P); componentDidMount(): void; shouldComponentUpdate(nextProps: any, nextState: any): boolean; render(): any; findByName(name: string): any; protected __p: string; protected _hasUserValues: Set<string>; protected get hasUserValues(): Set<string>; protected __m(propertyName: string): void; protected _stylingContainer: any; protected _stylingParent: any; protected _inStyling: boolean; protected _styling(container: any, component: any, parent?: any): void; } export interface IIgrCancelableBrowserEventArgsDetailProps { children?: React.ReactNode; }