diff --git a/src/@ionic-native/plugins/zeroconf/index.ts b/src/@ionic-native/plugins/zeroconf/index.ts index 63ce74574..d91228ffa 100644 --- a/src/@ionic-native/plugins/zeroconf/index.ts +++ b/src/@ionic-native/plugins/zeroconf/index.ts @@ -131,4 +131,12 @@ export class Zeroconf extends IonicNativePlugin { */ @Cordova() reInit(): Promise { return; } + /** + * Family of addresses to register: ipv4, ipv6 or any. + */ + registerAddressFamily: 'ipv4' | 'ipv6' | 'any'; + /** + * Family of addresses to watch for: ipv4, ipv6 or any. + */ + watchAddressFamily: 'ipv4' | 'ipv6' | 'any'; }