UNPKG

@adaptabletools/adaptable

Version:

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

9 lines (8 loc) 457 B
import { AdaptableState } from '../AdaptableState/AdaptableState'; import { MigrationLogger } from './AdaptableUpgradeHelper'; export declare abstract class VersionUpgrade { protected logger: MigrationLogger; constructor(logger: MigrationLogger); abstract migrateState(state: AdaptableState): AdaptableState; protected migrateStateWithMethods(state: AdaptableState, methods: ((state: AdaptableState) => AdaptableState)[]): AdaptableState; }