diff --git a/reports/api-extractor.md b/reports/api-extractor.md index 5371dbc1df9..70068bb4126 100644 --- a/reports/api-extractor.md +++ b/reports/api-extractor.md @@ -867,6 +867,7 @@ export type WatchInternal = (fieldNames?: InternalFieldName | Inte export type WatchObserver = (value: DeepPartial, info: { name?: FieldPath; type?: EventType; + value?: unknown; }) => void; // Warnings were encountered during analysis: diff --git a/src/types/form.ts b/src/types/form.ts index 7e6aae4a790..d17cd6c5cc5 100644 --- a/src/types/form.ts +++ b/src/types/form.ts @@ -825,6 +825,7 @@ export type WatchObserver = ( info: { name?: FieldPath; type?: EventType; + value?: unknown; }, ) => void;