mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-29 21:17:34 +00:00
[redux-form] add submitAsSideEffect prop (#40077)
This commit is contained in:
parent
3422b2b9e7
commit
170468ec3f
3
types/redux-form/index.d.ts
vendored
3
types/redux-form/index.d.ts
vendored
@ -1,4 +1,4 @@
|
||||
// Type definitions for redux-form 8.1
|
||||
// Type definitions for redux-form 8.2
|
||||
// Project: https://github.com/erikras/redux-form, https://redux-form.com
|
||||
// Definitions by: Daniel Lytkin <https://github.com/aikoven>
|
||||
// Karol Janyst <https://github.com/LKay>
|
||||
@ -14,6 +14,7 @@
|
||||
// Ethan Setnik <https://github.com/esetnik>
|
||||
// Walter Barbagallo <https://github.com/bwlt>
|
||||
// Kota Marusue <https://github.com/mrsekut>
|
||||
// Adam Bouqdib <https://github.com/abemedia>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 3.0
|
||||
import {
|
||||
|
||||
1
types/redux-form/lib/reduxForm.d.ts
vendored
1
types/redux-form/lib/reduxForm.d.ts
vendored
@ -126,6 +126,7 @@ export interface ConfigProps<FormData = {}, P = {}, ErrorType = string> {
|
||||
shouldError?(params: ValidateCallback<FormData, P, ErrorType>): boolean;
|
||||
shouldWarn?(params: ValidateCallback<FormData, P, ErrorType>): boolean;
|
||||
shouldAsyncValidate?(params: AsyncValidateCallback<FormData, ErrorType>): boolean;
|
||||
submitAsSideEffect?: boolean;
|
||||
touchOnBlur?: boolean;
|
||||
touchOnChange?: boolean;
|
||||
persistentSubmitErrors?: boolean;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user