File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/@ionic-native/plugins Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -266,7 +266,7 @@ export class Health extends IonicNativePlugin {
266
266
*
267
267
* Quirks of isAuthorized()
268
268
*
269
- * In iOS, this function will only check authorization status for writeable data.
269
+ * In iOS, this function will only check authorization status for writable data.
270
270
* Read-only data will always be considered as not authorized. This is an intended behaviour of HealthKit.
271
271
*
272
272
* @param {Array<string | HealthDataType> } datatypes a list of data types you want to check access of, same as in requestAuthorization
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export interface NdefRecord {
22
22
export interface NdefTag {
23
23
canMakeReadOnly : boolean ;
24
24
id : number [ ] ;
25
- isWriteable : boolean ;
25
+ isWritable : boolean ;
26
26
maxSize : number ;
27
27
ndefMessage : NdefRecord [ ] ;
28
28
techTypes : string [ ] ;
@@ -196,7 +196,7 @@ export class NFC extends IonicNativePlugin {
196
196
* @returns {Promise<any> }
197
197
*/
198
198
@Cordova ( )
199
- makeReadyOnly ( ) : Promise < any > {
199
+ makeReadOnly ( ) : Promise < any > {
200
200
return ;
201
201
}
202
202
You can’t perform that action at this time.
0 commit comments