fix(zeroconf): extend the ZeroconfResult.action definition (#1985)

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.
This commit is contained in:
excelulous
2017-09-27 16:36:32 -05:00
committed by Ibby Hadeed
parent 806766e33e
commit e2f3702d0b
+1 -1
View File
@@ -14,7 +14,7 @@ export interface ZeroconfService {
}
export interface ZeroconfResult {
action: 'registered' | 'added' | 'removed';
action: 'registered' | 'added' | 'removed' | 'resolved';
service: ZeroconfService;
}