mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-01-19 16:52:53 +08:00
docs(spinner-dialog): improve options documentation
This commit is contained in:
parent
ef28078815
commit
0daab8c31d
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user