docs(spinner-dialog): improve options documentation

This commit is contained in:
quentin 2017-10-06 20:12:39 +02:00
parent ef28078815
commit 0daab8c31d

View File

@ -2,9 +2,24 @@ import { Injectable } from '@angular/core';
import { Cordova, Plugin, IonicNativePlugin } from '@ionic-native/core'; import { Cordova, Plugin, IonicNativePlugin } from '@ionic-native/core';
export interface SpinnerDialogIOSOptions { export interface SpinnerDialogIOSOptions {
/**
* Opacity of the overlay, between 0 (transparent) and 1 (opaque). Default: 0.35
*/
overlayOpacity?: number; overlayOpacity?: number;
/**
* Red component of the text color, between 0 and 1. Default: 1
*/
textColorRed?: number; textColorRed?: number;
/**
* Green component of the text color, between 0 and 1. Default: 1
*/
textColorGreen?: number; textColorGreen?: number;
/**
* Blue component of the text color, between 0 and 1. Default: 1
*/
textColorBlue?: number; textColorBlue?: number;
} }