Skip to content

Commit

Permalink
fix(zeroconf): extend the ZeroconfResult.action definition (#1985)
Browse files Browse the repository at this point in the history
This now includes the value 'resolved', as it is a valid action passed by the service browser on iOS (at least) when IP addresses for the chosen service have been resolved.
  • Loading branch information
hnipps authored and ihadeed committed Sep 27, 2017
1 parent 806766e commit e2f3702
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/@ionic-native/plugins/zeroconf/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export interface ZeroconfService {
}

export interface ZeroconfResult {
action: 'registered' | 'added' | 'removed';
action: 'registered' | 'added' | 'removed' | 'resolved';
service: ZeroconfService;
}

Expand Down

0 comments on commit e2f3702

Please sign in to comment.