@progress/kendo-angular-grid
Version:
Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.
13 lines (12 loc) • 737 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 { FormGroup } from "@angular/forms";
import { CreateFormGroupArgs } from "../editing-directives/create-form-group-args.interface";
/**
* Defines a function that creates a `FormGroup` for the edited model.
* @param args The arguments for creating the form group.
* @returns The created `FormGroup`.
*/
export type CreateFormGroup = (args: CreateFormGroupArgs) => FormGroup;