mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2026-05-02 00:07:23 +08:00
fix(plugins): fix optional options
This commit is contained in:
+3
-3
@@ -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
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user