gd-bs 5.4.3 → 5.4.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/gd-bs.d.ts CHANGED
@@ -1390,10 +1390,10 @@ declare module 'gd-bs/components/form/formTypes' {
1390
1390
  */
1391
1391
  export interface IForm {
1392
1392
  /** Appends controls to the form */
1393
- appendControls: (controls: Array<IFormControlProps>) => void;
1393
+ appendControls: (controls: Array<IFormControlProps>) => Array<IFormControl>;
1394
1394
 
1395
1395
  /** Appends rows to the form */
1396
- appendRows: (rows: Array<IFormRow>) => void;
1396
+ appendRows: (rows: Array<IFormRow>) => Array<IFormControl>;
1397
1397
 
1398
1398
  /** The form controls */
1399
1399
  controls: Array<IFormControl>;