Skip to content

Commit

Permalink
service.ts: add return type for registerActivity()
Browse files Browse the repository at this point in the history
  • Loading branch information
throwaway96 committed Dec 6, 2023
1 parent 1e4a704 commit fa8ab48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ async function removePackage(packageId: string, service: Service): Promise<void>
/**
* Register activity to call /autostart on boot
*/
async function registerActivity(service: Service) {
async function registerActivity(service: Service): Promise<void> {
const activity = {
name: 'org.webosbrew.hbchannel.service.autostart',
description: 'Start HBChannel service on boot.',
Expand Down

0 comments on commit fa8ab48

Please sign in to comment.