fix(plugins): fix optional options

This commit is contained in:
Ibrahim Hadeed
2016-03-13 20:39:40 -04:00
parent e708bc6be7
commit 9ef850c66a
6 changed files with 29 additions and 29 deletions
+3 -3
View File
@@ -8,9 +8,9 @@ export interface smsOptions {
/**
* Set to true to replace \n by a new line. Default: false
*/
replaceLineBreaks : boolean,
replaceLineBreaks? : boolean,
android : smsOptionsAndroid
android? : smsOptionsAndroid
}
@@ -19,7 +19,7 @@ export interface smsOptionsAndroid {
/**
* Set to "INTENT" to send SMS with the native android SMS messaging. Leaving it empty will send the SMS without opening any app.
*/
intent : string
intent? : string
}