refactor(toolkit): type source any with proper types

Genuinely type composable any usages (useStepper/useStorage/useForm/
createEventHook/useSorted/etc.) as proper generics/unknown; keep idiomatic
any-function and overload-impl signatures with comments; skipped test -> .todo.
This commit is contained in:
2026-06-15 16:55:07 +07:00
parent 44848bc9e6
commit aa2938cb34
283 changed files with 3505 additions and 3482 deletions
@@ -31,7 +31,7 @@ import type {
*
* @since 0.0.16
*/
export function useFieldArray<T = any>(
export function useFieldArray<T = unknown>(
path: MaybeRefOrGetter<string>,
options: UseFieldArrayOptions = {},
): UseFieldArrayReturn<T> {