Skip to content

Commit 7b0aaab

Browse files
ci: apply automated fixes (attempt 2/3)
1 parent 20c36c8 commit 7b0aaab

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
@@ -21,9 +21,7 @@ title: BaseMutationNarrowing
2121

2222
```ts
2323
isError: SignalFunction<
24-
(
25-
this,
26-
) => this is CreateMutationResult<
24+
(this) => this is CreateMutationResult<
2725
TData,
2826
TError,
2927
TVariables,
@@ -53,9 +51,7 @@ isError: SignalFunction<
5351

5452
```ts
5553
isIdle: SignalFunction<
56-
(
57-
this,
58-
) => this is CreateMutationResult<
54+
(this) => this is CreateMutationResult<
5955
TData,
6056
TError,
6157
TVariables,
@@ -85,9 +81,7 @@ isIdle: SignalFunction<
8581

8682
```ts
8783
isPending: SignalFunction<
88-
(
89-
this,
90-
) => this is CreateMutationResult<
84+
(this) => this is CreateMutationResult<
9185
TData,
9286
TError,
9387
TVariables,
@@ -117,9 +111,7 @@ isPending: SignalFunction<
117111

118112
```ts
119113
isSuccess: SignalFunction<
120-
(
121-
this,
122-
) => this is CreateMutationResult<
114+
(this) => this is CreateMutationResult<
123115
TData,
124116
TError,
125117
TVariables,

0 commit comments

Comments
 (0)