/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { EditEvent } from "./edit-event-args.interface";
import { FormGroup } from "@angular/forms";
/**
 * Arguments for the [`save`](slug:api_treelist_treelistcomponent#toc-save) event.
 */
export interface SaveEvent extends EditEvent {
    /**
     * The edited `formGroup` instance.
     */
    formGroup: FormGroup;
    /**
     * The data item of the parent row, if any.
     */
    parent: any;
}
