Feat: Configure structured data output for agent forms #10866 (#10867)

### What problem does this PR solve?

Feat: Configure structured data output for agent forms #10866

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-10-29 12:19:24 +08:00
committed by GitHub
parent 415de50419
commit 4e69100ca7
51 changed files with 7343 additions and 317 deletions

View File

@ -16,4 +16,5 @@ export interface IModalProps<T> {
visible?: boolean;
loading?: boolean;
onOk?(payload?: T): Promise<any> | void;
initialValues?: T;
}