Skip to content

Commit 8c3e33a

Browse files
ci: apply automated fixes
1 parent 59f67b5 commit 8c3e33a

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed

docs/framework/angular/reference/interfaces/basemutationnarrowing.md

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ Defined in: [types.ts:218](https://github.com/TanStack/query/blob/main/packages/
2525

2626
```ts
2727
isError: SignalFunction<
28-
(
29-
this,
30-
) => this is CreateMutationResult<
28+
(this) => this is CreateMutationResult<
3129
TData,
3230
TError,
3331
TVariables,
@@ -55,9 +53,7 @@ Defined in: [types.ts:241](https://github.com/TanStack/query/blob/main/packages/
5553

5654
```ts
5755
isIdle: SignalFunction<
58-
(
59-
this,
60-
) => this is CreateMutationResult<
56+
(this) => this is CreateMutationResult<
6157
TData,
6258
TError,
6359
TVariables,
@@ -85,9 +81,7 @@ Defined in: [types.ts:275](https://github.com/TanStack/query/blob/main/packages/
8581

8682
```ts
8783
isPending: SignalFunction<
88-
(
89-
this,
90-
) => this is CreateMutationResult<
84+
(this) => this is CreateMutationResult<
9185
TData,
9286
TError,
9387
TVariables,
@@ -115,9 +109,7 @@ Defined in: [types.ts:258](https://github.com/TanStack/query/blob/main/packages/
115109

116110
```ts
117111
isSuccess: SignalFunction<
118-
(
119-
this,
120-
) => this is CreateMutationResult<
112+
(this) => this is CreateMutationResult<
121113
TData,
122114
TError,
123115
TVariables,

0 commit comments

Comments
 (0)