@@ -36,15 +36,16 @@ import type { ThrowOnError } from '@tanstack/query-core';
36
36
// @public (undocumented)
37
37
export interface BaseMutationNarrowing <TData = unknown , TError = DefaultError , TVariables = unknown , TContext = unknown > {
38
38
// (undocumented)
39
- isError: (this : CreateMutationResult <TData , TError , TVariables , TContext >) => this is CreateMutationResult <TData , TError , TVariables , TContext , CreateStatusBasedMutationResult <' error' , TData , TError , TVariables , TContext >>;
39
+ isError: SignalFunction < (this : CreateMutationResult <TData , TError , TVariables , TContext >) => this is CreateMutationResult <TData , TError , TVariables , TContext , CreateStatusBasedMutationResult <' error' , TData , TError , TVariables , TContext > >>;
40
40
// (undocumented)
41
- isIdle: (this : CreateMutationResult <TData , TError , TVariables , TContext >) => this is CreateMutationResult <TData , TError , TVariables , TContext , CreateStatusBasedMutationResult <' idle' , TData , TError , TVariables , TContext >>;
41
+ isIdle: SignalFunction < (this : CreateMutationResult <TData , TError , TVariables , TContext >) => this is CreateMutationResult <TData , TError , TVariables , TContext , CreateStatusBasedMutationResult <' idle' , TData , TError , TVariables , TContext > >>;
42
42
// (undocumented)
43
- isPending: (this : CreateMutationResult <TData , TError , TVariables , TContext >) => this is CreateMutationResult <TData , TError , TVariables , TContext , CreateStatusBasedMutationResult <' pending' , TData , TError , TVariables , TContext >>;
43
+ isPending: SignalFunction <(this : CreateMutationResult <TData , TError , TVariables , TContext >) => this is CreateMutationResult <TData , TError , TVariables , TContext , CreateStatusBasedMutationResult <' pending' , TData , TError , TVariables , TContext >>>;
44
+ // Warning: (ae-forgotten-export) The symbol "SignalFunction" needs to be exported by the entry point index.d.ts
44
45
// Warning: (ae-forgotten-export) The symbol "CreateStatusBasedMutationResult" needs to be exported by the entry point index.d.ts
45
46
//
46
47
// (undocumented)
47
- isSuccess: (this : CreateMutationResult <TData , TError , TVariables , TContext >) => this is CreateMutationResult <TData , TError , TVariables , TContext , CreateStatusBasedMutationResult <' success' , TData , TError , TVariables , TContext >>;
48
+ isSuccess: SignalFunction < (this : CreateMutationResult <TData , TError , TVariables , TContext >) => this is CreateMutationResult <TData , TError , TVariables , TContext , CreateStatusBasedMutationResult <' success' , TData , TError , TVariables , TContext > >>;
48
49
}
49
50
50
51
// @public (undocumented)
0 commit comments