Merge pull request #2027 from qligier/master

docs(spinner-dialog): improve options documentation
This commit is contained in:
Daniel Sogl
2018-03-16 17:02:51 +01:00
committed by GitHub
@@ -2,9 +2,24 @@ import { Injectable } from '@angular/core';
import { Cordova, Plugin, IonicNativePlugin } from '@ionic-native/core';
export interface SpinnerDialogIOSOptions {
/**
* Opacity of the overlay, between 0 (transparent) and 1 (opaque). Default: 0.35
*/
overlayOpacity?: number;
/**
* Red component of the text color, between 0 and 1. Default: 1
*/
textColorRed?: number;
/**
* Green component of the text color, between 0 and 1. Default: 1
*/
textColorGreen?: number;
/**
* Blue component of the text color, between 0 and 1. Default: 1
*/
textColorBlue?: number;
}