We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
why fieldValues: Partial<T> not fieldValues: T?
fieldValues: Partial<T>
fieldValues: T
https://github.com/beizhedenglong/vue-hooks-form/blob/c7079209c7757a628432f0c7cc2e5c9dd0358797/src/useForm.ts#L148C36-L148C47
i'm got error like this
public do(data: Partial<T>): void { thirdParty.process(T); //<-- Argument of type 'Partial<T>' is not assignable to parameter of type 'T'. }
tnx for great package!!