Skip to content

Commit 42d098b

Browse files
docs: Add missing updateAll example to withDataService
1 parent e9d9634 commit 42d098b

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ export class FlightService implements DataService<Flight, FlightFilter> {
154154

155155
create(entity: Flight): Promise<Flight> { ... }
156156
update(entity: Flight): Promise<Flight> { ... }
157+
updateAll(entity: Flight[]): Promise<Flight[]> { ... }
157158
delete(entity: Flight): Promise<void> { ... }
158159
[...]
159160
}

libs/ngrx-toolkit/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ export class FlightService implements DataService<Flight, FlightFilter> {
140140

141141
create(entity: Flight): Promise<Flight> { ... }
142142
update(entity: Flight): Promise<Flight> { ... }
143+
updateAll(entity: Flight[]): Promise<Flight[]> { ... }
143144
delete(entity: Flight): Promise<void> { ... }
144145
[...]
145146
}

0 commit comments

Comments
 (0)