Skip to content

Commit

Permalink
docs: Add missing updateAll example to withDataService
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-small authored Aug 11, 2024
1 parent e9d9634 commit 42d098b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ export class FlightService implements DataService<Flight, FlightFilter> {

create(entity: Flight): Promise<Flight> { ... }
update(entity: Flight): Promise<Flight> { ... }
updateAll(entity: Flight[]): Promise<Flight[]> { ... }
delete(entity: Flight): Promise<void> { ... }
[...]
}
Expand Down
1 change: 1 addition & 0 deletions libs/ngrx-toolkit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ export class FlightService implements DataService<Flight, FlightFilter> {

create(entity: Flight): Promise<Flight> { ... }
update(entity: Flight): Promise<Flight> { ... }
updateAll(entity: Flight[]): Promise<Flight[]> { ... }
delete(entity: Flight): Promise<void> { ... }
[...]
}
Expand Down

0 comments on commit 42d098b

Please sign in to comment.