mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-21 00:23:00 +08:00
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:
parent
806766e33e
commit
e2f3702d0b
@ -14,7 +14,7 @@ export interface ZeroconfService {
|
||||
}
|
||||
|
||||
export interface ZeroconfResult {
|
||||
action: 'registered' | 'added' | 'removed';
|
||||
action: 'registered' | 'added' | 'removed' | 'resolved';
|
||||
service: ZeroconfService;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user