refactor(lib): run prettier

This commit is contained in:
Daniel Sogl
2020-05-16 14:40:49 +02:00
parent f5133c691d
commit 511a02d50b
326 changed files with 3079 additions and 4092 deletions
@@ -27,11 +27,10 @@ import { Plugin, Cordova, IonicNativePlugin } from '@ionic-native/core';
plugin: 'cordova-plugin-discovery',
pluginRef: 'serviceDiscovery',
repo: 'https://github.com/scottdermott/cordova-plugin-discovery',
platforms: ['Android', 'iOS']
platforms: ['Android', 'iOS'],
})
@Injectable()
export class ServiceDiscovery extends IonicNativePlugin {
/**
* Finds and returns metadata about devices discovered on the network via SSDP / UPnP / DLNA
* @param service {string} The service name to discover
@@ -41,5 +40,4 @@ export class ServiceDiscovery extends IonicNativePlugin {
getNetworkServices(service: string): Promise<any> {
return;
}
}