diff --git a/packages/kit/src/exports/public.d.ts b/packages/kit/src/exports/public.d.ts index a8f7751573d9..0a42aaa412ff 100644 --- a/packages/kit/src/exports/public.d.ts +++ b/packages/kit/src/exports/public.d.ts @@ -1282,8 +1282,9 @@ export type SubmitFunction< /** * Call this to get the default behavior of a form submission response. * @param options Set `reset: false` if you don't want the `
` values to be reset after a successful submission. + * @param invalidateAll Set `invalidateAll: false` if you don't want the action to call `invalidateAll` after submission. */ - update(options?: { reset: boolean }): Promise; + update(options?: { reset?: boolean; invalidateAll?: boolean }): Promise; }) => void) >;