We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First, congratz of your job.
I use with typescript and want suggest a little help to other people
declare module 'form-data-json-convert' { interface OptionsToJson { includeDisabled?: boolean; includeButtonValues?: boolean; uncheckedValue?: any; inputFilter?: ((inputElement: HTMLInputElement) => boolean) | null; flatList?: boolean; skipEmpty?: boolean; filesCallback?: ((values: any) => void) | null; fileReaderFunction?: string; arrayify?: boolean; } interface OptionsFromJson { flatList?: boolean; clearOthers?: boolean; resetOthers?: boolean; triggerChangeEvent?: boolean; } function toJson( form: HTMLFormElement | string | JQuery, options?: OptionsToJson ): any; function fromJson( form: HTMLFormElement | string | JQuery, values: any, options?: OptionsFromJson ): void; function reset(form: HTMLFormElement | string | JQuery): void; function clear(form: HTMLFormElement | string | JQuery): void; const defaultOptionsToJson: OptionsToJson; const defaultOptionsFromJson: OptionsFromJson; }
The text was updated successfully, but these errors were encountered:
Thx for the suggestions. I'll into that.
Sorry, something went wrong.
Thx for the suggestion, the file is now added in 2.2.2.
brainfoolong
No branches or pull requests
First, congratz of your job.
I use with typescript and want suggest a little help to other people
The text was updated successfully, but these errors were encountered: