@progress/kendo-angular-grid
Version:
Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.
22 lines (21 loc) • 966 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { EditService } from './edit-service.interface';
import { LocalDataChangesService } from '../editing/local-data-changes.service';
/**
* @hidden
*/
export declare class LocalEditService implements EditService {
private grid;
private localDataChangesService;
constructor(grid: any, localDataChangesService: LocalDataChangesService);
create(item: any): void;
update(_item: any): void;
remove(item: any): void;
assignValues(target: any, source: any): void;
protected dataChanged(args?: any): void;
protected get hasLocalData(): boolean;
protected get data(): any[];
}