@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
12 lines (11 loc) • 503 B
TypeScript
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): void;
displayCreateRowForm(): void;
displayCloneRowForm(primaryKey?: any): void;
}