tslint
This commit is contained in:
parent
1b84db035f
commit
b4102310e7
@ -16,7 +16,7 @@ export interface ActionSheetOptions {
|
|||||||
/**
|
/**
|
||||||
* The subtitle for the actionsheet (IOS only)
|
* The subtitle for the actionsheet (IOS only)
|
||||||
*/
|
*/
|
||||||
subtitle?: string
|
subtitle?: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Theme to be used on Android
|
* Theme to be used on Android
|
||||||
@ -51,7 +51,7 @@ export interface ActionSheetOptions {
|
|||||||
/**
|
/**
|
||||||
* Choose if destructive button will be the last
|
* Choose if destructive button will be the last
|
||||||
*/
|
*/
|
||||||
destructiveButtonLast: boolean
|
destructiveButtonLast: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -9,13 +9,13 @@ export interface HealthDataType {
|
|||||||
* Read only date types (see https://github.com/dariosalvi78/cordova-plugin-health#supported-data-types)
|
* Read only date types (see https://github.com/dariosalvi78/cordova-plugin-health#supported-data-types)
|
||||||
*/
|
*/
|
||||||
read?: string[];
|
read?: string[];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Write only date types (see https://github.com/dariosalvi78/cordova-plugin-health#supported-data-types)
|
* Write only date types (see https://github.com/dariosalvi78/cordova-plugin-health#supported-data-types)
|
||||||
*/
|
*/
|
||||||
write?: string[];
|
write?: string[];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @hidden
|
* @hidden
|
||||||
*/
|
*/
|
||||||
@ -255,7 +255,7 @@ export class Health {
|
|||||||
*
|
*
|
||||||
* Quirks of isAuthorized()
|
* Quirks of isAuthorized()
|
||||||
*
|
*
|
||||||
* In iOS, this function will only check authorization status for writeable data.
|
* In iOS, this function will only check authorization status for writeable data.
|
||||||
* Read-only data will always be considered as not authorized. This is an intended behaviour of HealthKit.
|
* Read-only data will always be considered as not authorized. This is an intended behaviour of HealthKit.
|
||||||
*
|
*
|
||||||
* @param {Array<string | HealthDataType>} datatypes a list of data types you want to check access of, same as in requestAuthorization
|
* @param {Array<string | HealthDataType>} datatypes a list of data types you want to check access of, same as in requestAuthorization
|
||||||
|
Loading…
Reference in New Issue
Block a user