From 7952f9ef606647f26b68cb5f67d978f4a0fef53c Mon Sep 17 00:00:00 2001 From: Guillermo Date: Wed, 20 Jul 2016 17:17:09 +0200 Subject: [PATCH] Improvements on documentation (#340) * Improvements on documentation and some refactor * ts | js -> typescript (docs) --- README.md | 2 +- src/plugins/3dtouch.ts | 11 +++-- src/plugins/actionsheet.ts | 8 ++-- src/plugins/appavailability.ts | 14 +++--- src/plugins/apprate.ts | 4 +- src/plugins/appversion.ts | 4 +- src/plugins/background-geolocation.ts | 5 +-- src/plugins/backgroundmode.ts | 5 ++- src/plugins/badge.ts | 5 ++- src/plugins/barcodescanner.ts | 4 +- src/plugins/base64togallery.ts | 8 ++-- src/plugins/batterystatus.ts | 7 ++- src/plugins/ble.ts | 10 ++--- src/plugins/bluetoothserial.ts | 14 +++--- src/plugins/brightness.ts | 6 ++- src/plugins/calendar.ts | 1 + src/plugins/camera-preview.ts | 61 ++++++++++++++------------- src/plugins/camera.ts | 8 ++-- src/plugins/card-io.ts | 5 ++- src/plugins/clipboard.ts | 13 +++--- src/plugins/contacts.ts | 14 +++--- src/plugins/datepicker.ts | 9 ++-- src/plugins/dbmeter.ts | 11 +++-- src/plugins/deeplinks.ts | 5 ++- src/plugins/device.ts | 6 +-- src/plugins/deviceaccounts.ts | 1 + src/plugins/devicemotion.ts | 12 +++--- src/plugins/deviceorientation.ts | 11 +++-- src/plugins/diagnostic.ts | 1 + src/plugins/dialogs.ts | 4 +- src/plugins/emailcomposer.ts | 6 +-- src/plugins/facebook.ts | 8 ++-- src/plugins/filetransfer.ts | 18 +++----- src/plugins/flashlight.ts | 4 +- src/plugins/geolocation.ts | 15 +++---- src/plugins/globalization.ts | 5 +-- src/plugins/google-plus.ts | 4 +- src/plugins/googlemaps.ts | 4 +- src/plugins/hotspot.ts | 13 +++--- src/plugins/ibeacon.ts | 12 +++--- src/plugins/imagepicker.ts | 7 ++- src/plugins/insomnia.ts | 5 ++- src/plugins/keyboard.ts | 4 +- src/plugins/launchnavigator.ts | 10 ++--- src/plugins/localnotifications.ts | 19 ++++----- src/plugins/media-capture.ts | 3 +- src/plugins/media.ts | 12 +++--- src/plugins/nativestorage.ts | 2 +- src/plugins/network.ts | 10 ++--- src/plugins/onesignal.ts | 11 ++--- src/plugins/pin-dialog.ts | 5 +-- src/plugins/plugin.ts | 4 +- src/plugins/push.ts | 23 +++++----- src/plugins/safari-view-controller.ts | 11 +++-- src/plugins/sim.ts | 8 ++-- src/plugins/sms.ts | 8 ++-- src/plugins/socialsharing.ts | 5 ++- src/plugins/spinnerdialog.ts | 5 +-- src/plugins/splashscreen.ts | 5 +-- src/plugins/sqlite.ts | 12 +++--- src/plugins/statusbar.ts | 5 +-- src/plugins/toast.ts | 7 ++- src/plugins/touchid.ts | 14 +++--- src/plugins/twitter-connect.ts | 2 + src/plugins/vibration.ts | 5 +-- 65 files changed, 281 insertions(+), 279 deletions(-) diff --git a/README.md b/README.md index 2da5cf8e..e2d56841 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ For the full Ionic Native documentation, please visit [http://ionicframework.com Ionic Native wraps plugin callbacks in a Promise or [Observable](https://gist.github.com/staltz/868e7e9bc2a7b8c1f754), providing a common interface for all plugins and ensuring that native events trigger change detection in Angular 2. ``` -import {Geolocation} from 'ionic-native'; +import { Geolocation } from 'ionic-native'; Geolocation.getCurrentPosition().then(pos => { console.log('lat: ' + pos.coords.latitude + ', lon: ' + pos.coords.longitude); diff --git a/src/plugins/3dtouch.ts b/src/plugins/3dtouch.ts index 61e81c4d..bbbc9d22 100644 --- a/src/plugins/3dtouch.ts +++ b/src/plugins/3dtouch.ts @@ -10,13 +10,13 @@ declare var window: any; * @usage * Please do refer to the original plugin's repo for detailed usage. The usage example here might not be sufficient. * ``` - * import {ThreeDeeTouch} from 'ionic-native'; + * import { ThreeDeeTouch } from 'ionic-native'; * * // import for type completion on variables - * import {ThreeDeeTouchQuickAction, ThreeDeeTouchForceTouch} from 'ionic-native'; + * import { ThreeDeeTouchQuickAction, ThreeDeeTouchForceTouch } from 'ionic-native'; * ... * - * ThreeDeeTouch.isAvailable().then(isAvailable => console.log("3D Touch available? " + isAvailable)): + * ThreeDeeTouch.isAvailable().then(isAvailable => console.log("3D Touch available? " + isAvailable)); * * ThreeDeeTouch.watchForceTouches() * .subscribe( @@ -57,7 +57,7 @@ declare var window: any; * ThreeDeeTouchForceTouch.onHomeIconPressed().subscribe( * (payload) => { * // returns an object that is the button you presed - * console.log(`Pressed the ${payload.title} button`) + * console.log('Pressed the ${payload.title} button') * console.log(payload.type) * * } @@ -130,13 +130,16 @@ export class ThreeDeeTouch { sync: true }) static disableLinkPreview(): void { } + } + export interface ThreeDeeTouchQuickAction { type?: string; title: string; subtitle?: string; iconType?: string; } + export interface ThreeDeeTouchForceTouch { force: number; timestamp: number; diff --git a/src/plugins/actionsheet.ts b/src/plugins/actionsheet.ts index 5c7738a9..8edd3204 100644 --- a/src/plugins/actionsheet.ts +++ b/src/plugins/actionsheet.ts @@ -9,8 +9,9 @@ import { Cordova, Plugin } from './plugin'; * Requires Cordova plugin: `cordova-plugin-actionsheet`. For more info, please see the [ActionSheet plugin docs](https://github.com/EddyVerbruggen/cordova-plugin-actionsheet). * * @usage - * ```ts - * import {ActionSheet} from 'ionic-native'; + * ```typescript + * import { ActionSheet } from 'ionic-native'; + * * * let buttonLabels = ['Share via Facebook', 'Share via Twitter']; * ActionSheet.show({ @@ -18,7 +19,7 @@ import { Cordova, Plugin } from './plugin'; * 'buttonLabels': buttonLabels, * 'addCancelButtonWithLabel': 'Cancel', * 'addDestructiveButtonWithLabel' : 'Delete' - * }).then(buttonIndex => { + * }).then((buttonIndex: number) => { * console.log('Button pressed: ' + buttonLabels[buttonIndex - 1]); * }); * ``` @@ -72,4 +73,5 @@ export class ActionSheet { */ @Cordova() static hide(options?: any): Promise { return; } + } diff --git a/src/plugins/appavailability.ts b/src/plugins/appavailability.ts index cf0ffd41..58232e20 100644 --- a/src/plugins/appavailability.ts +++ b/src/plugins/appavailability.ts @@ -8,22 +8,22 @@ import { Cordova, Plugin } from './plugin'; * Requires Cordova plugin: cordova-plugin-appavailability. For more info, please see the [AppAvailability plugin docs](https://github.com/ohh2ahh/AppAvailability). * * @usage - * ```js - * import {AppAvailability} from 'ionic-native'; + * ```typescript + * import { AppAvailability } from 'ionic-native'; * * - * var app; + * let app; * - * if(device.platform === 'iOS') { + * if (device.platform === 'iOS') { * app = 'twitter://'; - * }else if(device.platform === 'Android'){ + * } else if (device.platform === 'Android') { * app = 'com.twitter.android'; * } * * AppAvailability.check(app) * .then( - * yes => console.log(app + " is available"), - * no => console.log(app + " is NOT available") + * (yes: string) => console.log(app + ' is available'), + * (no: string) => console.log(app + ' is NOT available') * ); * ``` */ diff --git a/src/plugins/apprate.ts b/src/plugins/apprate.ts index 876d3535..9dbe8d6d 100644 --- a/src/plugins/apprate.ts +++ b/src/plugins/apprate.ts @@ -11,8 +11,8 @@ declare var window; * Requires Cordova plugin: cordova-plugin-apprate. For more info, please see the [AppRate plugin docs](https://github.com/pushandplay/cordova-plugin-apprate). * * @usage - * ```js - * import {AppRate} from 'ionic-native'; + * ```typescript + * import { AppRate } from 'ionic-native'; * * * AppRate.preferences.storeAppURL.ios = ''; diff --git a/src/plugins/appversion.ts b/src/plugins/appversion.ts index 9932af27..644f9657 100644 --- a/src/plugins/appversion.ts +++ b/src/plugins/appversion.ts @@ -8,8 +8,8 @@ import { Cordova, Plugin } from './plugin'; * Requires Cordova plugin: `cordova-plugin-app-version`. For more info, please see the [Cordova App Version docs](https://github.com/whiteoctober/cordova-plugin-app-version). * * @usage - * ```js - * import {AppVersion} from 'ionic-native'; + * ```typescript + * import { AppVersion } from 'ionic-native'; * * * AppVersion.getAppName(); diff --git a/src/plugins/background-geolocation.ts b/src/plugins/background-geolocation.ts index 7bd45799..fe183067 100644 --- a/src/plugins/background-geolocation.ts +++ b/src/plugins/background-geolocation.ts @@ -162,9 +162,8 @@ export interface Config { * * @usage * - * ```ts - * import {BackgroundGeolocation} from 'ionic-native'; - * + * ```typescript + * import { BackgroundGeolocation } from 'ionic-native'; * * * // When device is ready : diff --git a/src/plugins/backgroundmode.ts b/src/plugins/backgroundmode.ts index f1b9c56f..309509a3 100644 --- a/src/plugins/backgroundmode.ts +++ b/src/plugins/backgroundmode.ts @@ -6,8 +6,8 @@ import { Cordova, Plugin } from './plugin'; * Cordova plugin to prevent the app from going to sleep while in background. * Requires Cordova plugin: cordova-plugin-background-mode. For more info about plugin, vist: https://github.com/katzer/cordova-plugin-background-mode#android-customization *@usage -* ```js -* import {BackgroundMode} from 'ionic-native'; +* ```typescript +* import { BackgroundMode } from 'ionic-native'; * * BackgroundMode.enable(); * ``` @@ -91,6 +91,7 @@ export class BackgroundMode { sync: true }) static on(eventName: string, callback: any): void { } + } /** diff --git a/src/plugins/badge.ts b/src/plugins/badge.ts index f29ee2bc..c188d273 100644 --- a/src/plugins/badge.ts +++ b/src/plugins/badge.ts @@ -8,8 +8,8 @@ import { Cordova, Plugin } from './plugin'; * Requires Cordova plugin: cordova-plugin-badge. For more info, please see the [Badge plugin docs](https://github.com/katzer/cordova-plugin-badge). * * @usage - * ```js - * import {Badge} from 'ionic-native'; + * ```typescript + * import { Badge } from 'ionic-native'; * * * Badge.set(10); @@ -74,4 +74,5 @@ export class Badge { */ @Cordova() static registerPermission(): Promise { return; } + } diff --git a/src/plugins/barcodescanner.ts b/src/plugins/barcodescanner.ts index c00aad09..b6bb0e07 100644 --- a/src/plugins/barcodescanner.ts +++ b/src/plugins/barcodescanner.ts @@ -8,8 +8,8 @@ import { Cordova, Plugin } from './plugin'; * Requires Cordova plugin: `phonegap-plugin-barcodescanner`. For more info, please see the [BarcodeScanner plugin docs](https://github.com/phonegap/phonegap-plugin-barcodescanner). * * @usage - * ```js - * import {BarcodeScanner} from 'ionic-native'; + * ```typescript + * import { BarcodeScanner } from 'ionic-native'; * * * BarcodeScanner.scan().then((barcodeData) => { diff --git a/src/plugins/base64togallery.ts b/src/plugins/base64togallery.ts index b55be642..f4b86f00 100644 --- a/src/plugins/base64togallery.ts +++ b/src/plugins/base64togallery.ts @@ -3,13 +3,13 @@ import { Cordova, Plugin } from './plugin'; * @name Base64 To Gallery * @description This plugin allows you to save base64 data as a png image into the device * @usage - * ```ts - * import {Base64ToGallery} from 'ionic-native'; + * ```typescript + * import { Base64ToGallery } from 'ionic-native'; * * * Base64ToGallery.base64ToGallery(base64Data, 'img_').then( - * res => console.log("Saved image to gallery ", res), - * err => console.log("Error saving image to gallery ", err) + * res => console.log('Saved image to gallery ', res), + * err => console.log('Error saving image to gallery ', err) * ); * ``` */ diff --git a/src/plugins/batterystatus.ts b/src/plugins/batterystatus.ts index cf19c658..c70beae6 100644 --- a/src/plugins/batterystatus.ts +++ b/src/plugins/batterystatus.ts @@ -7,14 +7,13 @@ import { Observable } from 'rxjs/Observable'; * Requires Cordova plugin: cordova-plugin-batterystatus. For more info, please see the [BatteryStatus plugin docs](https://github.com/apache/cordova-plugin-battery-status). * * @usage - * ```js - * import {BatteryStatus} from 'ionic-native'; - * + * ```typescript + * import { BatteryStatus } from 'ionic-native'; * * * // watch change in battery status * let subscription = BatteryStatus.onChange().subscribe( - * status => { + * (status: StatusObject) => { * console.log(status.level, status.isPlugged); * } * ); diff --git a/src/plugins/ble.ts b/src/plugins/ble.ts index 5a7657f2..6df9f2f6 100644 --- a/src/plugins/ble.ts +++ b/src/plugins/ble.ts @@ -24,7 +24,7 @@ import { Observable } from 'rxjs/Observable'; * * Peripheral Data is passed to the success callback when scanning and connecting. Limited data is passed when scanning. * - * ```ts + * ```typescript * { * "name": "Battery Demo", * "id": "20:FF:D0:FF:D1:C0", @@ -34,7 +34,7 @@ import { Observable } from 'rxjs/Observable'; * ``` * After connecting, the peripheral object also includes service, characteristic and descriptor information. * - * ```ts + * ```typescript * { * "name": "Battery Demo", * "id": "20:FF:D0:FF:D1:C0", @@ -93,7 +93,7 @@ import { Observable } from 'rxjs/Observable'; * * ### Android * - * ```ts + * ```typescript * { * "name": "demo", * "id": "00:1A:7D:DA:71:13", @@ -108,7 +108,7 @@ import { Observable } from 'rxjs/Observable'; * * Note that iOS uses the string value of the constants for the [Advertisement Data Retrieval Keys](https://developer.apple.com/library/ios/documentation/CoreBluetooth/Reference/CBCentralManagerDelegate_Protocol/index.html#//apple_ref/doc/constant_group/Advertisement_Data_Retrieval_Keys). This will likely change in the future. * - * ```ts + * ```typescript * { * "name": "demo", * "id": "D8479A4F-7517-BCD3-91B5-3302B2F81802", @@ -137,7 +137,7 @@ import { Observable } from 'rxjs/Observable'; * * This means that you need convert your data to ArrayBuffers before sending and from ArrayBuffers when receiving. * - * ```ts + * ```typescript * // ASCII only * function stringToBytes(string) { * var array = new Uint8Array(string.length); diff --git a/src/plugins/bluetoothserial.ts b/src/plugins/bluetoothserial.ts index bfef832e..069fed3f 100644 --- a/src/plugins/bluetoothserial.ts +++ b/src/plugins/bluetoothserial.ts @@ -5,12 +5,15 @@ import { Observable } from 'rxjs/Observable'; * @name Bluetooth Serial * @description This plugin enables serial communication over Bluetooth. It was written for communicating between Android or iOS and an Arduino. * @usage - * ```ts + * ```typescript + * import { BluetoothSerial } from 'ionic-native'; + * + * * // Write a string - * Bluetooth.write("hello world").then(success, failure); + * BluetoothSerial.write("hello world").then(success, failure); * * // Array of int or bytes - * Bluetooth.write([186, 220, 222]).then(success, failure); + * BluetoothSerial.write([186, 220, 222]).then(success, failure); * * // Typed Array * var data = new Uint8Array(4); @@ -18,10 +21,10 @@ import { Observable } from 'rxjs/Observable'; * data[1] = 0x42; * data[2] = 0x43; * data[3] = 0x44; - * Bluetooth.write(data).then(success, failure); + * BluetoothSerial.write(data).then(success, failure); * * // Array Buffer - * Bluetooth.write(data.buffer).then(success, failure); + * BluetoothSerial.write(data.buffer).then(success, failure); * ``` */ @Plugin({ @@ -218,4 +221,5 @@ export class BluetoothSerial { sync: true }) static setDiscoverable(discoverableDuration: number): void { } + } diff --git a/src/plugins/brightness.ts b/src/plugins/brightness.ts index bf50fbbe..934379e7 100644 --- a/src/plugins/brightness.ts +++ b/src/plugins/brightness.ts @@ -8,8 +8,9 @@ import { Cordova, Plugin } from './plugin'; * Requires Cordova plugin: `cordova-plugin-brightness`. For more info, please see the [Brightness plugin docs](https://github.com/mgcrea/cordova-plugin-brightness). * * @usage - * ```ts - * import {Brightness} from 'ionic-native'; + * ```typescript + * import { Brightness } from 'ionic-native'; + * * * let brightnessValue: number = 0.8; * Brightness.setBrightness(brightnessValue); @@ -47,4 +48,5 @@ export class Brightness { */ @Cordova() static setKeepScreenOn(value: boolean): void { } + } diff --git a/src/plugins/calendar.ts b/src/plugins/calendar.ts index 82f144d6..0435427b 100644 --- a/src/plugins/calendar.ts +++ b/src/plugins/calendar.ts @@ -417,4 +417,5 @@ export class Calendar { */ @Cordova() static openCalendar(date: Date): Promise { return; } + } diff --git a/src/plugins/camera-preview.ts b/src/plugins/camera-preview.ts index 72cf1b2d..c6038eef 100644 --- a/src/plugins/camera-preview.ts +++ b/src/plugins/camera-preview.ts @@ -1,30 +1,31 @@ -import {Plugin, Cordova} from './plugin'; -import {Observable} from 'rxjs/Observable'; +import { Cordova, Plugin } from './plugin'; +import { Observable } from 'rxjs/Observable'; + export interface CameraPreviewOptions { - x: number; - y: number; - width: number; - height: number; - /** - * Choose the camera to use (front- or back-facing). - * 'front' for front camera - * 'rear' for rear camera - */ - camera: string; - /** Take photo on tap */ - tapPhoto: boolean; - /** */ - previewDrag: boolean; - /** */ - toBack: boolean; - /** Alpha use when toBack is set to true */ - alpha: number; + x: number; + y: number; + width: number; + height: number; + /** + * Choose the camera to use (front- or back-facing). + * 'front' for front camera + * 'rear' for rear camera + */ + camera: string; + /** Take photo on tap */ + tapPhoto: boolean; + /** */ + previewDrag: boolean; + /** */ + toBack: boolean; + /** Alpha use when toBack is set to true */ + alpha: number; } export interface CameraPreviewSize { - maxWidth: number; - maxHeight: number; + maxWidth: number; + maxHeight: number; } /** @@ -50,7 +51,7 @@ export class CameraPreview { @Cordova({ sync: true }) - static startCamera(options: CameraPreviewOptions): void {}; + static startCamera(options: CameraPreviewOptions): void { }; /** * Stops the camera preview instance. @@ -58,7 +59,7 @@ export class CameraPreview { @Cordova({ sync: true }) - static stopCamera(): void {}; + static stopCamera(): void { }; /** * Take the picture, the parameter size is optional @@ -66,7 +67,7 @@ export class CameraPreview { @Cordova({ sync: true }) - static takePicture(size: CameraPreviewSize): void {}; + static takePicture(size: CameraPreviewSize): void { }; /** * Register a callback function that receives the original picture and the image captured from the preview box. @@ -82,7 +83,7 @@ export class CameraPreview { @Cordova({ sync: true }) - static switchCamera(): void {}; + static switchCamera(): void { }; /** * Show the camera preview box. @@ -90,7 +91,7 @@ export class CameraPreview { @Cordova({ sync: true }) - static show(): void {}; + static show(): void { }; /** * Hide the camera preview box. @@ -98,7 +99,7 @@ export class CameraPreview { @Cordova({ sync: true }) - static hide(): void {}; + static hide(): voi { }; /** * Set the default mode for the Flash. @@ -106,7 +107,7 @@ export class CameraPreview { @Cordova({ sync: true }) - static setFlashMode(mode: number): void {}; + static setFlashMode(mode: number): void { }; /** * Set camera color effect. @@ -114,7 +115,7 @@ export class CameraPreview { @Cordova({ sync: true }) - static setColorEffect(effect: string): void {}; + static setColorEffect(effect: string): void { }; /** * @private diff --git a/src/plugins/camera.ts b/src/plugins/camera.ts index de625cbb..dd2ba531 100644 --- a/src/plugins/camera.ts +++ b/src/plugins/camera.ts @@ -93,14 +93,16 @@ export interface CameraPopoverOptions { * Requires {@link module:driftyco/ionic-native} and the Cordova plugin: `cordova-plugin-camera`. For more info, please see the [Cordova Camera Plugin Docs](https://github.com/apache/cordova-plugin-camera). * * @usage - * ```js - * import {Camera} from 'ionic-native'; + * ```typescript + * import { Camera } from 'ionic-native'; + * * * Camera.getPicture(options).then((imageData) => { * // imageData is either a base64 encoded string or a file URI * // If it's base64: - * let base64Image = "data:image/jpeg;base64," + imageData; + * let base64Image = 'data:image/jpeg;base64,' + imageData; * }, (err) => { + * // Handle error * }); * ``` */ diff --git a/src/plugins/card-io.ts b/src/plugins/card-io.ts index f6fc26e7..ef695278 100644 --- a/src/plugins/card-io.ts +++ b/src/plugins/card-io.ts @@ -1,13 +1,13 @@ import { Cordova, Plugin } from './plugin'; + /** * @name CardIO * @description * @usage * ``` - * import {CardIO} from 'ionic-native'; + * import { CardIO } from 'ionic-native'; * - * ... * * CardIO.canScan() * .then( @@ -51,6 +51,7 @@ export class CardIO { */ @Cordova() static version(): Promise { return; } + } export interface CardIOOptions { diff --git a/src/plugins/clipboard.ts b/src/plugins/clipboard.ts index 0fccfa4f..77e50219 100644 --- a/src/plugins/clipboard.ts +++ b/src/plugins/clipboard.ts @@ -10,19 +10,18 @@ import { Cordova, Plugin } from './plugin'; * For more info, please see the [Clipboard plugin docs](https://github.com/VersoSolutions/CordovaClipboard.git). * * @usage - * ```js - * import {Clipboard} from 'ionic-native'; + * ```typescript + * import { Clipboard } from 'ionic-native'; * * - * - * Clipboard.copy("Hello world"); + * Clipboard.copy('Hello world'); * * Clipboard.paste().then( - * (resolve : string) => { + * (resolve: string) => { * alert(resolve); * }, - * (reject : string) => { - * alert("Error: " + reject); + * (reject: string) => { + * alert('Error: ' + reject); * } * ); * ); diff --git a/src/plugins/contacts.ts b/src/plugins/contacts.ts index dabd0628..ee5335c4 100644 --- a/src/plugins/contacts.ts +++ b/src/plugins/contacts.ts @@ -1,4 +1,4 @@ -import { Cordova, CordovaInstance, Plugin, InstanceProperty } from './plugin'; +import { Cordova, CordovaInstance, InstanceProperty, Plugin } from './plugin'; declare var window: any, @@ -257,16 +257,15 @@ export class ContactFindOptions implements IContactFindOptions { * * @usage * - * ```js - * import {Contact} from 'ionic-native'; - * + * ```typescript + * import { Contact } from 'ionic-native'; * * * let contact = new Contact(); - * contact.displayName = "Mr. Ionitron"; + * contact.displayName = 'Mr. Ionitron'; * contact.save().then( - * () => console.log("Contact saved!", contact), - * (error: any) => console.error("Error saving contact.", error) + * () => console.log('Contact saved!', contact), + * (error: any) => console.error('Error saving contact.', error) * ); * ``` * @@ -308,4 +307,5 @@ export class Contacts { */ @Cordova() static pickContact(): Promise { return; } + } diff --git a/src/plugins/datepicker.ts b/src/plugins/datepicker.ts index 255dab7e..71fc988d 100644 --- a/src/plugins/datepicker.ts +++ b/src/plugins/datepicker.ts @@ -1,5 +1,6 @@ import { Cordova, Plugin } from './plugin'; + export interface DatePickerOptions { /** * Platforms: iOS, Android, Windows @@ -73,16 +74,16 @@ export interface DatePickerOptions { * Requires Cordova plugin: `cordova-plugin-datepicker`. For more info, please see the [DatePicker plugin docs](https://github.com/VitaliiBlagodir/cordova-plugin-datepicker). * * @usage - * ```js - * import {DatePicker} from 'ionic-native'; + * ```typescript + * import { DatePicker } from 'ionic-native'; * * * DatePicker.show({ * date: new Date(), * mode: 'date' * }).then( - * date => console.log("Got date: ", date), - * err => console.log("Error occurred while getting date:", err) + * date => console.log('Got date: ', date), + * err => console.log('Error occurred while getting date: ', err) * ); * ``` * diff --git a/src/plugins/dbmeter.ts b/src/plugins/dbmeter.ts index 05471fff..138ee643 100644 --- a/src/plugins/dbmeter.ts +++ b/src/plugins/dbmeter.ts @@ -6,9 +6,8 @@ import { Observable } from 'rxjs/Observable'; * @name DB Meter * @description This plugin defines a global DBMeter object, which permits to get the decibel values from the microphone. * @usage - * ```ts - * import {DBMeter} from 'ionic-native'; - * + * ```typescript + * import { DBMeter } from 'ionic-native'; * * * // Start listening @@ -18,7 +17,7 @@ import { Observable } from 'rxjs/Observable'; * * // Check if we are listening * DBMeter.isListening().then( - * (isListening : boolean) => console.log(isListening) + * (isListening: boolean) => console.log(isListening) * ); * * // Stop listening @@ -26,8 +25,8 @@ import { Observable } from 'rxjs/Observable'; * * // Delete DBMeter instance from memory * DBMeter.delete().then( - * () => console.log("Deleted DB Meter instance"), - * error => console.log("Error occurred while deleting DB Meter instance") + * () => console.log('Deleted DB Meter instance'), + * error => console.log('Error occurred while deleting DB Meter instance') * ); * ``` */ diff --git a/src/plugins/deeplinks.ts b/src/plugins/deeplinks.ts index ab6172c2..c394150b 100644 --- a/src/plugins/deeplinks.ts +++ b/src/plugins/deeplinks.ts @@ -27,8 +27,8 @@ export interface DeeplinkMatch { * and Universal App Links. * * @usage - * ```ts - * import {IonicDeeplinks} from 'ionic-native'; + * ```typescript + * import { IonicDeeplinks } from 'ionic-native'; * * ``` */ @@ -77,4 +77,5 @@ export class Deeplinks { observable: true }) static routeWithNavController(navController, paths): Observable { return; } + } diff --git a/src/plugins/device.ts b/src/plugins/device.ts index 453e3ad1..6dd10693 100644 --- a/src/plugins/device.ts +++ b/src/plugins/device.ts @@ -33,9 +33,8 @@ export interface Device { * Access information about the underlying device and platform. * * @usage - * ```js - * import {Device} from 'ionic-native'; - * + * ```typescript + * import { Device } from 'ionic-native'; * * * console.log('Device UUID is: ' + Device.device.uuid); @@ -55,4 +54,5 @@ export class Device { */ @CordovaProperty static get device() { return window.device; } + } diff --git a/src/plugins/deviceaccounts.ts b/src/plugins/deviceaccounts.ts index 7497671b..1b1a7a11 100644 --- a/src/plugins/deviceaccounts.ts +++ b/src/plugins/deviceaccounts.ts @@ -32,4 +32,5 @@ export class DeviceAccounts { */ @Cordova() static getEmail(): Promise { return; } + } diff --git a/src/plugins/devicemotion.ts b/src/plugins/devicemotion.ts index 42246f97..b3a67bcf 100644 --- a/src/plugins/devicemotion.ts +++ b/src/plugins/devicemotion.ts @@ -41,19 +41,18 @@ export interface AccelerometerOptions { * Requires Cordova plugin: `cordova-plugin-device-motion`. For more info, please see the [Device Motion docs](https://github.com/apache/cordova-plugin-device-motion). * * @usage - * ```ts - * import {DeviceMotion} from 'ionic-native'; - * + * ```typescript + * import { DeviceMotion } from 'ionic-native'; * * * // Get the device current acceleration * DeviceMotion.getCurrentAcceleration().then( - * acceleration => console.log(acceleration), - * error => console.log(error) + * (acceleration: AccelerationData) => console.log(acceleration), + * (error: any) => console.log(error) * ); * * // Watch device acceleration - * var subscription = DeviceMotion.watchAcceleration().subscribe(acceleration => { + * var subscription = DeviceMotion.watchAcceleration().subscribe((acceleration: AccelerationData) => { * console.log(acceleration); * }); * @@ -87,4 +86,5 @@ export class DeviceMotion { clearFunction: 'clearWatch' }) static watchAcceleration(options?: AccelerometerOptions): Observable { return; } + } diff --git a/src/plugins/deviceorientation.ts b/src/plugins/deviceorientation.ts index 257cb27d..0766345f 100644 --- a/src/plugins/deviceorientation.ts +++ b/src/plugins/deviceorientation.ts @@ -46,20 +46,19 @@ export interface CompassOptions { * Requires Cordova plugin: `cordova-plugin-device-orientation`. For more info, please see the [Device Orientation docs](https://github.com/apache/cordova-plugin-device-orientation). * * @usage - * ```ts - * import {DeviceOrientation} from 'ionic-native'; - * + * ```typescript + * import { DeviceOrientation } from 'ionic-native'; * * * // Get the device current compass heading * DeviceOrientation.getCurrentHeading().then( - * data => console.log(data), - * error => console.log(error) + * (data: CompassHeading) => console.log(data), + * (error: any) => console.log(error) * ); * * // Watch the device compass heading change * var subscription = DeviceOrientation.watchHeading().subscribe( - * data => console.log(data) + * (data: CompassHeading) => console.log(data) * ); * * // Stop watching heading change diff --git a/src/plugins/diagnostic.ts b/src/plugins/diagnostic.ts index 4037fa98..aebe92c4 100644 --- a/src/plugins/diagnostic.ts +++ b/src/plugins/diagnostic.ts @@ -95,4 +95,5 @@ export class Diagnostic { */ @Cordova() static isRegisteredForRemoteNotifications(): Promise { return; } + } diff --git a/src/plugins/dialogs.ts b/src/plugins/dialogs.ts index a619244a..bfda6f7f 100644 --- a/src/plugins/dialogs.ts +++ b/src/plugins/dialogs.ts @@ -23,8 +23,8 @@ export interface PromptCallback { * Requires Cordova plugin: `cordova-plugin-dialogs`. For more info, please see the [Dialogs plugin docs](https://github.com/apache/cordova-plugin-dialogs). * * @usage - * ```js - * import {Dialogs} from 'ionic-native'; + * ```typescript + * import { Dialogs } from 'ionic-native'; * * * diff --git a/src/plugins/emailcomposer.ts b/src/plugins/emailcomposer.ts index 532f9fe6..82fa266d 100644 --- a/src/plugins/emailcomposer.ts +++ b/src/plugins/emailcomposer.ts @@ -12,11 +12,11 @@ declare var cordova: any; * DISCLAIMER: This plugin is experiencing issues with the latest versions of Cordova. Use at your own risk. Functionality is not guaranteed. Please stay tuned for a more stable version. * * @usage - * ```ts - * import {EmailComposer} from 'ionic-native'; + * ```typescript + * import { EmailComposer } from 'ionic-native'; * * - * EmailComposer.isAvailable().then((available) =>{ + * EmailComposer.isAvailable().then((available: boolean) =>{ * if(available) { * //Now we know we can send * } diff --git a/src/plugins/facebook.ts b/src/plugins/facebook.ts index 2b6867e3..f236b0c4 100644 --- a/src/plugins/facebook.ts +++ b/src/plugins/facebook.ts @@ -69,8 +69,8 @@ import { Cordova, Plugin } from './plugin'; * For tracking events, see `logEvent` and `logPurchase`. * * @usage - * ```js - * import {Facebook} from 'ionic-native'; + * ```typescript + * import { Facebook } from 'ionic-native'; * * * @@ -98,7 +98,7 @@ export class Facebook { /** * Login to Facebook to authenticate this app. * - * ```ts + * ```typescript * { * status: "connected", * authResponse: { @@ -245,7 +245,9 @@ export class Facebook { url: string, picture: string }): Promise { return; } + } + export interface FacebookLoginResponse { status: string; authResponse: { diff --git a/src/plugins/filetransfer.ts b/src/plugins/filetransfer.ts index 372e20f7..a2414cad 100644 --- a/src/plugins/filetransfer.ts +++ b/src/plugins/filetransfer.ts @@ -112,24 +112,20 @@ export interface FileTransferError { * This plugin allows you to upload and download files. * * @usage + * ```typescript + * import { Transfer } from 'ionic-native'; * - * Create instance: - * ```ts + * + * // Create instance: * const fileTransfer = new Transfer(); - * ``` * - * Upload a file: - * ```ts + * // Upload a file: * fileTransfer.upload(..).then(..).catch(..); - * ``` * - * Download a file: - * ```ts + * // Download a file: * fileTransfer.download(..).then(..).catch(..); - * ``` * - * Abort active transfer: - * ```ts + * // Abort active transfer: * fileTransfer.abort(); * ``` * diff --git a/src/plugins/flashlight.ts b/src/plugins/flashlight.ts index 034114b2..57a8b669 100644 --- a/src/plugins/flashlight.ts +++ b/src/plugins/flashlight.ts @@ -8,8 +8,8 @@ import { Cordova, Plugin } from './plugin'; * Requires Cordova plugin: `cordova-plugin-flashlight`. For more info, please see the [Flashlight plugin docs](https://github.com/EddyVerbruggen/Flashlight-PhoneGap-Plugin). * * @usage - * ```js - * import {Flashlight} from 'ionic-native'; + * ```typescript + * import { Flashlight } from 'ionic-native'; * * * diff --git a/src/plugins/geolocation.ts b/src/plugins/geolocation.ts index 892f3400..795f0be1 100644 --- a/src/plugins/geolocation.ts +++ b/src/plugins/geolocation.ts @@ -102,20 +102,19 @@ export interface GeolocationOptions { * * @usage * - * ```ts - * import {Geolocation} from 'ionic-native'; - * + * ```typescript + * import { Geolocation } from 'ionic-native'; * * * Geolocation.getCurrentPosition().then((resp) => { - * //resp.coords.latitude - * //resp.coords.longitude + * // resp.coords.latitude + * // resp.coords.longitude * }) * * let watch = Geolocation.watchPosition(); * watch.subscribe((data) => { - * //data.coords.latitude - * //data.coords.longitude + * // data.coords.latitude + * // data.coords.longitude * }) * ``` */ @@ -140,7 +139,7 @@ export class Geolocation { * Watch the current device's position. Clear the watch by unsubscribing from * Observable changes. * - * ```ts + * ```typescript * var subscription = Geolocation.watchPosition().subscribe(position => { * console.log(position.coords.longitude + ' ' + position.coords.latitude); * }); diff --git a/src/plugins/globalization.ts b/src/plugins/globalization.ts index 1fb4b023..88988a8a 100644 --- a/src/plugins/globalization.ts +++ b/src/plugins/globalization.ts @@ -4,9 +4,8 @@ import { Cordova, Plugin } from './plugin'; * @name Globalization * @description * @usage - * ```js - * import {Globalization} from 'ionic-native'; - * + * ```typescript + * import { Globalization } from 'ionic-native'; * * * ``` diff --git a/src/plugins/google-plus.ts b/src/plugins/google-plus.ts index 09b2550c..e3401e15 100644 --- a/src/plugins/google-plus.ts +++ b/src/plugins/google-plus.ts @@ -5,7 +5,9 @@ import { Cordova, Plugin } from './plugin'; * @name Google Plus * @description * @usage - * ``` + * ```typescript + * import { GooglePlus } from 'ionic-native'; + * * * ``` */ diff --git a/src/plugins/googlemaps.ts b/src/plugins/googlemaps.ts index 2ba6beb5..231a9144 100644 --- a/src/plugins/googlemaps.ts +++ b/src/plugins/googlemaps.ts @@ -46,14 +46,14 @@ export const GoogleMapsAnimation = { * @description This plugin uses the native Google Maps SDK * @usage * ``` - * import {GoogleMap, GoogleMapsEvent} from 'ionic-native'; + * import { GoogleMap, GoogleMapsEvent } from 'ionic-native'; * * ... * * // somewhere in your component * let map = new GoogleMap('elementID'); * - * map.on(GoogleMapsEvent.MAP_READY).subscribe(() => console.log("Map is ready!")); + * map.on(GoogleMapsEvent.MAP_READY).subscribe(() => console.log('Map is ready!')); * ``` */ @Plugin({ diff --git a/src/plugins/hotspot.ts b/src/plugins/hotspot.ts index 0c927e6c..79b8a29c 100644 --- a/src/plugins/hotspot.ts +++ b/src/plugins/hotspot.ts @@ -4,14 +4,13 @@ import { Cordova, Plugin } from './plugin'; * @name Hotspot * @description * @usage - * ```js - * import {Hotspot, Network} from 'ionic-native'; + * ```typescript + * import { Hotspot, Network } from 'ionic-native'; * - * ... - * Hotspot.scanWifi().then((networks: Array) => { - * console.log(networks); - * }); - * ... + * + * Hotspot.scanWifi().then((networks: Array) => { + * console.log(networks); + * }); * * ``` */ diff --git a/src/plugins/ibeacon.ts b/src/plugins/ibeacon.ts index cb9d2fdf..b68e5e43 100644 --- a/src/plugins/ibeacon.ts +++ b/src/plugins/ibeacon.ts @@ -231,8 +231,8 @@ export interface Delegate { * * @usage * - * ```ts - * import {IBeacon} from 'ionic-native'; + * ```typescript + * import { IBeacon } from 'ionic-native'; * * * // Request permission to use location on iOS @@ -243,13 +243,13 @@ export interface Delegate { * // Subscribe to some of the delegate's event handlers * delegate.didRangeBeaconsInRegion() * .subscribe( - * data => {console.log('didRangeBeaconsInRegion: ', data)}, - * error => console.error + * data => console.log('didRangeBeaconsInRegion: ', data), + * error => console.error(); * ); * delegate.didStartMonitoringForRegion() * .subscribe( - * data => {console.log('didStartMonitoringForRegion: ', data)}, - * error => console.error + * data => console.log('didStartMonitoringForRegion: ', data), + * error => console.error(); * ); * delegate.didEnterRegion() * .subscribe( diff --git a/src/plugins/imagepicker.ts b/src/plugins/imagepicker.ts index 45bacc98..7347951b 100644 --- a/src/plugins/imagepicker.ts +++ b/src/plugins/imagepicker.ts @@ -27,8 +27,8 @@ export interface ImagePickerOptions { * For more info, please see the https://github.com/wymsee/cordova-imagePicker * * @usage - * ```js - * import {ImagePicker} from 'ionic-native'; + * ```typescript + * import { ImagePicker } from 'ionic-native'; * * * @@ -36,8 +36,7 @@ export interface ImagePickerOptions { * for (var i = 0; i < results.length; i++) { * console.log('Image URI: ' + results[i]); * } - * }, (err) => { - * }); + * }, (err) => { }); * ``` */ @Plugin({ diff --git a/src/plugins/insomnia.ts b/src/plugins/insomnia.ts index 95fb7238..8e39c442 100644 --- a/src/plugins/insomnia.ts +++ b/src/plugins/insomnia.ts @@ -7,8 +7,9 @@ import { Cordova, Plugin } from './plugin'; * Prevent the screen of the mobile device from falling asleep. * * @usage - * ```js - * import {Insomnia} from 'ionic-native'; + * ```typescript + * import { Insomnia } from 'ionic-native'; + * * * Insomnia.keepAwake() * .then( diff --git a/src/plugins/keyboard.ts b/src/plugins/keyboard.ts index bda2758a..57f09143 100644 --- a/src/plugins/keyboard.ts +++ b/src/plugins/keyboard.ts @@ -6,8 +6,8 @@ import { Observable } from 'rxjs/Observable'; * @name Keyboard * @description * @usage - * ```js - * import {Keyboard} from 'ionic-native'; + * ```typescript + * import { Keyboard } from 'ionic-native'; * * * diff --git a/src/plugins/launchnavigator.ts b/src/plugins/launchnavigator.ts index a01326f3..03bd91e6 100644 --- a/src/plugins/launchnavigator.ts +++ b/src/plugins/launchnavigator.ts @@ -66,18 +66,18 @@ export interface LaunchNavigatorOptions { * @usage * Please refer to the plugin's repo for detailed usage. This docs page only explains the Native wrapper. * - * ```js - * import {LaunchNavigator, LaunchNavigatorOptions} from 'ionic-native'; + * ```typescript + * import { LaunchNavigator, LaunchNavigatorOptions } from 'ionic-native'; * * let options: LaunchNavigatorOptions = { * start: 'London, ON', * app: LaunchNavigator.APPS.UBER * }; * - * LaunchNavigator.navigate("Toronto, ON", options) + * LaunchNavigator.navigate('Toronto, ON', options) * .then( - * success => console.log("Launched navigator"), - * error => console.log("Error launching navigator", error) + * success => console.log('Launched navigator'), + * error => console.log('Error launching navigator', error) * ); * ``` */ diff --git a/src/plugins/localnotifications.ts b/src/plugins/localnotifications.ts index fd03199f..9d56d59e 100644 --- a/src/plugins/localnotifications.ts +++ b/src/plugins/localnotifications.ts @@ -7,15 +7,14 @@ import { Cordova, Plugin } from './plugin'; * This plugin allows you to display local notifications on the device * * @usage - * ```ts - * import {LocalNotifications} from 'ionic-native'; - * + * ```typescript + * import { LocalNotifications } from 'ionic-native'; * * * // Schedule a single notification * LocalNotifications.schedule({ * id: 1, - * text: "Single Notification", + * text: 'Single Notification', * sound: isAndroid? 'file://sound.mp3': 'file://beep.caf' * data: { secret: key } * }); @@ -24,22 +23,22 @@ import { Cordova, Plugin } from './plugin'; * // Schedule multiple notifications * LocalNotifications.schedule([{ * id: 1, - * text: "Multi Notification 1", + * text: 'Multi Notification 1', * sound: isAndroid ? 'file://sound.mp3': 'file://beep.caf', * data: { secret:key } * },{ * id: 2, - * title: "Local Notification Example", - * text: "Multi Notification 2", - * icon: "http://example.com/icon.png" + * title: 'Local Notification Example', + * text: 'Multi Notification 2', + * icon: 'http://example.com/icon.png' * }]); * * * // Schedule delayed notification * LocalNotifications.schedule({ - * text: "Delayed Notification", + * text: 'Delayed Notification', * at: new Date(new Date().getTime() + 3600), - * led: "FF0000", + * led: 'FF0000', * sound: null * }); * ``` diff --git a/src/plugins/media-capture.ts b/src/plugins/media-capture.ts index 668dc5c2..8366a7c9 100644 --- a/src/plugins/media-capture.ts +++ b/src/plugins/media-capture.ts @@ -9,9 +9,8 @@ declare var navigator: any; * @description * @usage * ```typescript - * import {MediaCapture} from 'ionic-native'; + * import { MediaCapture } from 'ionic-native'; * - * ... * * let options: CaptureImageOptions = { limit: 3 }; * MediaCapture.captureImage(options) diff --git a/src/plugins/media.ts b/src/plugins/media.ts index 425e0ec7..78e01ce4 100644 --- a/src/plugins/media.ts +++ b/src/plugins/media.ts @@ -8,22 +8,22 @@ declare var Media: any; * @name MediaPlugin * @description * @usage - * ```ts - * import {MediaPlugin} from 'ionic-native'; + * ```typescript + * import { MediaPlugin } from 'ionic-native'; * * * * // Create a MediaPlugin instance. Expects path to file or url as argument - * var file = new MediaPlugin("path/to/file.mp3"); + * var file = new MediaPlugin('path/to/file.mp3'); * * // Catch the Success & Error Output * // Platform Quirks * // iOS calls success on completion of playback only * // Android calls success on completion of playback AND on release() * file.init.then(() => { - * console.log("Playback Finished"); + * console.log('Playback Finished'); * }, (err) => { - * console.log("somthing went wrong! error code: "+err.code+" message: "+err.message); + * console.log('somthing went wrong! error code: ' + err.code + ' message: ' + err.message); * }); * * // play the file @@ -55,7 +55,7 @@ declare var Media: any; * file.release(); * * // Recording to a file - * var newFile = new MediaPlugin("path/to/file.mp3"); + * var newFile = new MediaPlugin('path/to/file.mp3'); * newFile.startRecord(); * * newFile.stopRecord(); diff --git a/src/plugins/nativestorage.ts b/src/plugins/nativestorage.ts index 00399a1e..35f96a60 100644 --- a/src/plugins/nativestorage.ts +++ b/src/plugins/nativestorage.ts @@ -7,7 +7,7 @@ import { Cordova, Plugin } from './plugin'; * * @usage * ```typescript - * import {NativeStorage} from 'ionic-native'; + * import { NativeStorage } from 'ionic-native'; * * NativeStorage.setItem('myitem', {property: 'value', anotherProperty: 'anotherValue'}) * .then( diff --git a/src/plugins/network.ts b/src/plugins/network.ts index b1f3da4e..a5cd45e2 100644 --- a/src/plugins/network.ts +++ b/src/plugins/network.ts @@ -10,12 +10,12 @@ declare var navigator: any; * Requires Cordova plugin: cordova-plugin-network-information. For more info, please see the [Network plugin docs](https://github.com/apache/cordova-plugin-network-information). * * @usage - * ```js - * import {Network} from 'ionic-native'; + * ```typescript + * import { Network } from 'ionic-native'; * * // watch network for a disconnect * let disconnectSubscription = Network.onDisconnect().subscribe(() => { - * console.log('network was disconnected :-( ') + * console.log('network was disconnected :-('); * }); * * // stop disconnect watch @@ -24,9 +24,9 @@ declare var navigator: any; * * // watch network for a connection * let connectSubscription = Network.onConnect().subscribe(() => { - * console.log('network connected!');
* + * console.log('network connected!');
 * // We just got a connection but we need to wait briefly - *
// before we determine the connection type. Might need to wait
 + *
 // before we determine the connection type. Might need to wait
 * // prior to doing any api requests as well. * setTimeout(() => { * if (Network.connection === 'wifi') { diff --git a/src/plugins/onesignal.ts b/src/plugins/onesignal.ts index d7041197..4ab9afe1 100644 --- a/src/plugins/onesignal.ts +++ b/src/plugins/onesignal.ts @@ -10,15 +10,16 @@ import { Cordova, Plugin } from './plugin'; * Requires Cordova plugin: `onesignal-cordova-plugin`. For more info, please see the [OneSignal Cordova Docs](https://documentation.onesignal.com/docs/phonegap-sdk-installation). * * @usage - * ```ts - * import {OneSignal} from 'ionic-native'; + * ```typescript + * import { OneSignal } from 'ionic-native'; * * let notificationOpenedCallback(jsonData: any) { * console.log('didReceiveRemoteNotificationCallBack: ' + JSON.stringify(jsonData)); * }; - * OneSignal.init("b2f7f966-d8cc-11e4-bed1-df8f05be55ba", - * {googleProjectNumber: "703322744261"}, - * notificationOpenedCallback); + * + * OneSignal.init('b2f7f966-d8cc-11e4-bed1-df8f05be55ba', + * {googleProjectNumber: '703322744261'}, + * notificationOpenedCallback); * * OneSignal.enableInAppAlertNotification(true); * ``` diff --git a/src/plugins/pin-dialog.ts b/src/plugins/pin-dialog.ts index e6811376..3e2ac519 100644 --- a/src/plugins/pin-dialog.ts +++ b/src/plugins/pin-dialog.ts @@ -7,14 +7,13 @@ import { Cordova, Plugin } from './plugin'; * * @usage * ```typescript - * import {PinDialog} from 'ionic-native'; + * import { PinDialog } from 'ionic-native'; * - * ... * * PinDialog.prompt('Enter your PIN', 'Verify PIN', ['OK', 'Cancel']) * .then( * (result: any) => { - * if(result.buttonIndex == 1) console.log('User clicked OK, value is: ', result.input1); + * if (result.buttonIndex == 1) console.log('User clicked OK, value is: ', result.input1); * else if(result.buttonIndex == 2) console.log('User cancelled'); * } * ); diff --git a/src/plugins/plugin.ts b/src/plugins/plugin.ts index 77d39f13..7d40780f 100644 --- a/src/plugins/plugin.ts +++ b/src/plugins/plugin.ts @@ -1,10 +1,10 @@ import { get } from '../util'; +import { Observable } from 'rxjs/Observable'; declare var window; declare var Promise; declare var $q; -import {Observable} from 'rxjs/Observable'; /** * @private @@ -230,7 +230,7 @@ export const wrap = function(pluginObj: any, methodName: string, opts: any = {}) * Class decorator specifying Plugin metadata. Required for all plugins. * * @usage - * ```ts + * ```typescript * @Plugin({ * name: 'MyPlugin', * plugin: 'cordova-plugin-myplugin', diff --git a/src/plugins/push.ts b/src/plugins/push.ts index 6cd38315..dea0b200 100644 --- a/src/plugins/push.ts +++ b/src/plugins/push.ts @@ -65,19 +65,19 @@ export interface PushNotification { * @param event * @param callback */ - on(event: "registration", callback: (response: RegistrationEventResponse) => any): void; + on(event: 'registration', callback: (response: RegistrationEventResponse) => any): void; /** * The event notification will be triggered each time a push notification is received by a 3rd party push service on the device. * @param event * @param callback */ - on(event: "notification", callback: (response: NotificationEventResponse) => any): void; + on(event: 'notification', callback: (response: NotificationEventResponse) => any): void; /** * The event error will trigger when an internal error occurs and the cache is aborted. * @param event * @param callback */ - on(event: "error", callback: (response: Error) => any): void; + on(event: 'error', callback: (response: Error) => any): void; /** * * @param event Name of the event to listen to. See below(above) for all the event names. @@ -87,9 +87,9 @@ export interface PushNotification { */ on(event: string, callback: (response: EventResponse) => any): void; - off(event: "registration", callback: (response: RegistrationEventResponse) => any): void; - off(event: "notification", callback: (response: NotificationEventResponse) => any): void; - off(event: "error", callback: (response: Error) => any): void; + off(event: 'registration', callback: (response: RegistrationEventResponse) => any): void; + off(event: 'notification', callback: (response: NotificationEventResponse) => any): void; + off(event: 'error', callback: (response: Error) => any): void; /** * As stated in the example, you will have to store your event handler if you are planning to remove it. * @param event Name of the event type. The possible event names are the same as for the push.on function. @@ -279,11 +279,8 @@ declare var PushNotification: { * For TypeScript users, see the [Push plugin docs about using TypeScript for custom notifications](https://github.com/phonegap/phonegap-plugin-push/blob/master/docs/TYPESCRIPT.md). * * @usage - * ```js - * import {Push} from 'ionic-native'; - * - * - * + * ```typescript + * import { Push } from 'ionic-native'; * ``` */ @Plugin({ @@ -299,10 +296,10 @@ export class Push { * ``` * var push = Push.init({ * android: { - * senderID: "12345679" + * senderID: '12345679' * }, * ios: { - * alert: "true", + * alert: 'true', * badge: true, * sound: 'false' * }, diff --git a/src/plugins/safari-view-controller.ts b/src/plugins/safari-view-controller.ts index 0580c16f..62d34291 100644 --- a/src/plugins/safari-view-controller.ts +++ b/src/plugins/safari-view-controller.ts @@ -6,13 +6,12 @@ import { Cordova, Plugin } from './plugin'; * @description * @usage * ``` - * import {SafariViewController} from 'ionic-native'; + * import { SafariViewController } from 'ionic-native'; * - * ... * * SafariViewController.isAvailable() * .then( - * (available) => { + * (available: boolean) => { * if(available){ * * SafariViewController.show({ @@ -25,9 +24,9 @@ import { Cordova, Plugin } from './plugin'; * }) * .then( * (result: any) => { - * if(result.event === 'opened') console.log("Opened"); - * else if(result.event === 'loaded') console.log("Loaded"); - * else if(result.event === 'closed') console.log("Closed"); + * if(result.event === 'opened') console.log('Opened'); + * else if(result.event === 'loaded') console.log('Loaded'); + * else if(result.event === 'closed') console.log('Closed'); * }, * (error: any) => console.error(error) * ); diff --git a/src/plugins/sim.ts b/src/plugins/sim.ts index 21f6dace..bff9a49b 100644 --- a/src/plugins/sim.ts +++ b/src/plugins/sim.ts @@ -9,13 +9,13 @@ import { Cordova, Plugin } from './plugin'; * Requires Cordova plugin: `cordova-plugin-sim`. For more info, please see the [Cordova Sim docs](https://github.com/pbakondy/cordova-plugin-sim). * * @usage - * ```js - * import {Sim} from 'ionic-native'; + * ```typescript + * import { Sim } from 'ionic-native'; * * * Sim.getSimInfo().then( - * (info) => console.log('Sim info:', info), - * (err) => console.log('Unable to get sim info:', err) + * (info) => console.log('Sim info: ', info), + * (err) => console.log('Unable to get sim info: ', err) * ); * ``` */ diff --git a/src/plugins/sms.ts b/src/plugins/sms.ts index 4e705e46..d659fc6a 100644 --- a/src/plugins/sms.ts +++ b/src/plugins/sms.ts @@ -31,14 +31,12 @@ export interface SmsOptionsAndroid { * Requires Cordova plugin: cordova-plugin-sms. For more info, please see the [SMS plugin docs](https://github.com/cordova-sms/cordova-sms-plugin). * * @usage - * ```ts - * import {SMS} from 'ionic-native'; - * + * ```typescript + * import { SMS } from 'ionic-native'; * * * // Send a text message using default options - * SMS.send('416123456','Hello world!'); - * + * SMS.send('416123456', 'Hello world!'); * ``` */ @Plugin({ diff --git a/src/plugins/socialsharing.ts b/src/plugins/socialsharing.ts index 1f8178ff..d194b221 100644 --- a/src/plugins/socialsharing.ts +++ b/src/plugins/socialsharing.ts @@ -1,12 +1,13 @@ import { Cordova, Plugin } from './plugin'; + /** * @name Social Sharing * @description * Share text, files, images, and links via social networks, sms, and email. * @usage - * ```ts - * import {SocialSharing} from 'ionic-native'; + * ```typescript + * import { SocialSharing } from 'ionic-native'; * * // Check if sharing via email is supported * SocialSharing.canShareViaEmail().then(() => { diff --git a/src/plugins/spinnerdialog.ts b/src/plugins/spinnerdialog.ts index cd39c3cb..6f539711 100644 --- a/src/plugins/spinnerdialog.ts +++ b/src/plugins/spinnerdialog.ts @@ -5,9 +5,8 @@ import { Cordova, Plugin } from './plugin'; * @name Spinner Dialog * @description * @usage - * ```js - * import {SpinnerDialog} from 'ionic-native'; - * + * ```typescript + * import { SpinnerDialog } from 'ionic-native'; * * * SpinnerDialog.show(); diff --git a/src/plugins/splashscreen.ts b/src/plugins/splashscreen.ts index 1879b84b..f5bc8662 100644 --- a/src/plugins/splashscreen.ts +++ b/src/plugins/splashscreen.ts @@ -5,9 +5,8 @@ import { Cordova, Plugin } from './plugin'; * @name Splashscreen * @description This plugin displays and hides a splash screen during application launch. The methods below allows showing and hiding the splashscreen after the app has loaded. * @usage - * ```ts - * import {Splashscreen} from 'ionic-native'; - * + * ```typescript + * import { Splashscreen } from 'ionic-native'; * * * Splashscreen.show(); diff --git a/src/plugins/sqlite.ts b/src/plugins/sqlite.ts index c4dfc722..b4e1971c 100644 --- a/src/plugins/sqlite.ts +++ b/src/plugins/sqlite.ts @@ -11,7 +11,7 @@ declare var sqlitePlugin; * * @usage * - * ```ts + * ```typescript * import { SQLite } from 'ionic-native'; * * let db = new SQLite(); @@ -22,10 +22,10 @@ declare var sqlitePlugin; * db.executeSql('create table danceMoves(name VARCHAR(32))', {}).then(() => { * * }, (err) => { - * console.error('Unable to execute sql', err); - * }) + * console.error('Unable to execute sql: ', err); + * }); * }, (err) => { - * console.error('Unable to open database', err); + * console.error('Unable to open database: ', err); * }); * ``` * @@ -52,7 +52,7 @@ export class SQLite { * @param config the config for opening the database. * @usage * - * ```ts + * ```typescript * import { SQLite } from 'ionic-native'; * * let db = new SQLite(); @@ -112,7 +112,7 @@ export class SQLite { * * @usage * - * ```ts + * ```typescript * db.executeSql('SELECT FROM puppies WHERE type = ?', ['cavalier']).then((resultSet) => { * // Access the items through resultSet.rows * // resultSet.rows.item(i) diff --git a/src/plugins/statusbar.ts b/src/plugins/statusbar.ts index 0307b5cc..decd53f9 100644 --- a/src/plugins/statusbar.ts +++ b/src/plugins/statusbar.ts @@ -11,10 +11,9 @@ declare var window; * Requires Cordova plugin: `cordova-plugin-statusbar`. For more info, please see the [StatusBar plugin docs](https://github.com/apache/cordova-plugin-statusbar). * * @usage - * ```ts - * import {StatusBar} from 'ionic-native'; + * ```typescript + * import { StatusBar } from 'ionic-native'; * - * ... * * StatuBar.overlaysWebView(true); // let status var overlay webview * diff --git a/src/plugins/toast.ts b/src/plugins/toast.ts index 7a6a50ba..0b0ccc16 100644 --- a/src/plugins/toast.ts +++ b/src/plugins/toast.ts @@ -43,12 +43,11 @@ export interface ToastOptions { * Requires Cordova plugin: `cordova-plugin-x-toast`. For more info, please see the [Toast plugin docs](https://github.com/EddyVerbruggen/Toast-PhoneGap-Plugin). * * @usage - * ```ts - * import {Toast} from 'ionic-native'; + * ```typescript + * import { Toast } from 'ionic-native'; * * - * - * Toast.show("I'm a toast", "5000", "center").subscribe( + * Toast.show("I'm a toast", '5000', 'center').subscribe( * toast => { * console.log(toast); * } diff --git a/src/plugins/touchid.ts b/src/plugins/touchid.ts index bf963286..058edc01 100644 --- a/src/plugins/touchid.ts +++ b/src/plugins/touchid.ts @@ -21,23 +21,21 @@ import { Cordova, Plugin } from './plugin'; * - `-6` - TouchID is not Available * - `-8` - TouchID is locked out from too many tries * @usage - * ```js - * import {TouchID} from 'ionic-native'; + * ```typescript + * import { TouchID } from 'ionic-native'; * - * ... * * TouchID.isAvailable() * .then( - * res => console.log("TouchID is available!"), - * err => console.error("TouchID isn't available", err) + * res => console.log('TouchID is available!'), + * err => console.error('TouchID isn't available', err) * ); * * TouchID.verifyFingerprint('Scan your fingerprint please') * .then( - * res => console.log("Ok", res), - * err => console.error("Error", err) + * res => console.log('Ok', res), + * err => console.error('Error', err) * ); - * * ``` */ @Plugin({ diff --git a/src/plugins/twitter-connect.ts b/src/plugins/twitter-connect.ts index b9310ab3..31295935 100644 --- a/src/plugins/twitter-connect.ts +++ b/src/plugins/twitter-connect.ts @@ -1,4 +1,6 @@ import { Plugin, Cordova } from './plugin'; + + /** * @name Twitter Connect * @description diff --git a/src/plugins/vibration.ts b/src/plugins/vibration.ts index 43c56a3c..c67843d9 100644 --- a/src/plugins/vibration.ts +++ b/src/plugins/vibration.ts @@ -5,9 +5,8 @@ import { Cordova, Plugin } from './plugin'; * @name Vibration * @description Vibrates the device * @usage - * ```ts - * import {Vibration} from 'ionic-native'; - * + * ```typescript + * import { Vibration } from 'ionic-native'; * * * // Vibrate the device for a second