UNPKG

@adaptabletools/adaptable

Version:

Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

13 lines (12 loc) 580 B
import { ApiBase } from './ApiBase'; import { IAdaptable } from '../../AdaptableInterfaces/IAdaptable'; import { RowFormApi } from '../RowFormApi'; import { RowFormInternalApi } from '../Internal/RowFormInternalApi'; export declare class RowFormApiImpl extends ApiBase implements RowFormApi { internalApi: RowFormInternalApi; constructor(_adaptable: IAdaptable); displayEditRowForm(primaryKey: any): Promise<void>; displayCreateRowForm(): Promise<void>; displayCloneRowForm(primaryKey?: any): Promise<void>; displayDeleteRowForm(primaryKey?: any): void; }