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
@@ -2,10 +2,10 @@ import { Injectable } from '@angular/core';
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
export interface FileChooserOptions {
/**
* comma seperated mime types to filter files.
*/
mime: string;
/**
* comma seperated mime types to filter files.
*/
mime: string;
}
/**
@@ -35,11 +35,10 @@ export interface FileChooserOptions {
plugin: 'cordova-plugin-filechooser',
pluginRef: 'fileChooser',
repo: 'https://github.com/ihadeed/cordova-filechooser',
platforms: ['Android']
platforms: ['Android'],
})
@Injectable()
export class FileChooser extends IonicNativePlugin {
/**
* Open a file
* @param {FileChooserOptions} [options] Optional parameter, defaults to ''. Filters the file selection list according to mime types
@@ -49,5 +48,4 @@ export class FileChooser extends IonicNativePlugin {
open(options?: FileChooserOptions): Promise<string> {
return;
}
}