@sunny-base-web/effects 0.8.2 → 0.8.3

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/index.d.ts CHANGED
@@ -2395,6 +2395,15 @@ export declare function useFavorite(): {
2395
2395
  }>;
2396
2396
  };
2397
2397
 
2398
+ export declare function useForm({ schema, objectToValueFields }?: UseFormOptions): readonly [DefineComponent< {}, () => VNode<RendererNode, RendererElement, {
2399
+ [key: string]: any;
2400
+ }>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, FormApi];
2401
+
2402
+ declare interface UseFormOptions {
2403
+ schema?: any[];
2404
+ objectToValueFields?: string[];
2405
+ }
2406
+
2398
2407
  export declare function useGlobalLoading(): UseGlobalLoadingReturn;
2399
2408
 
2400
2409
  /**