@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
16 lines (15 loc) • 692 B
TypeScript
import { ApiBase } from './ApiBase';
import { DataSetApi } from '../DataSetApi';
import { DataSet } from '../../AdaptableOptions/DataSetOptions';
import { IAdaptable } from '../../AdaptableInterfaces/IAdaptable';
import { DataSetInternalApi } from '../Internal/DataSetInternalApi';
export declare class DataSetApiImpl extends ApiBase implements DataSetApi {
internalApi: DataSetInternalApi;
constructor(_adaptable: IAdaptable);
getDataSets(): DataSet[];
getCurrentDataSet(): DataSet | undefined;
getDataSetByName(dataSetName: string): DataSet | undefined;
setDataSet(dataSetName: string): void;
clearCurrentDataSet(): void;
openDataSetSettingsPanel(): void;
}