File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
query-old/docs/api/created-api Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -103,12 +103,6 @@ type UseMutationStateOptions<Definition> = {
103
103
type UseMutationTrigger <Definition > = (
104
104
arg : ArgTypeFrom <Definition >
105
105
) => Promise <{ data: ResultTypeFrom <Definition > } | { error: BaseQueryError | SerializedError }> & {
106
- arg: {
107
- endpointName: string ; // The name of the given endpoint for the mutation
108
- originalArgs: ArgTypeFrom <Definition >; // Arguments passed to the mutation
109
- track? : boolean ; // Whether the mutation is being tracked in the store
110
- startedTimeStamp: number ; // Timestamp for when the mutation was initiated
111
- };
112
106
requestId: string ; // A string generated by RTK Query
113
107
abort: () => void ; // A method to cancel the mutation promise
114
108
unwrap: () => Promise <ResultTypeFrom <Definition >>; // A method to unwrap the mutation call and provide the raw response/error
You can’t perform that action at this time.
0 commit comments