diff --git a/src/@ionic-native/plugins/mobile-accessibility/index.ts b/src/@ionic-native/plugins/mobile-accessibility/index.ts index f0a3b1b01..5b94b5fd6 100644 --- a/src/@ionic-native/plugins/mobile-accessibility/index.ts +++ b/src/@ionic-native/plugins/mobile-accessibility/index.ts @@ -53,21 +53,21 @@ export class MobileAccessibility extends IonicNativePlugin { /** * Makes an asynchronous call to native MobileAccessibility to determine if a screen reader is running. - * @returns result {Promise} A result method to receive the boolean result asynchronously from the native MobileAccessibility plugin. + * @returns {Promise} A result method to receive the boolean result asynchronously from the native MobileAccessibility plugin. */ @Cordova() isScreenReaderRunning(): Promise { return; } /** * An iOS-specific proxy for the MobileAccessibility.isScreenReaderRunning method - * @returns result {Promise} A result method to receive the boolean result asynchronously from the native MobileAccessibility plugin. + * @returns {Promise} A result method to receive the boolean result asynchronously from the native MobileAccessibility plugin. */ @Cordova({ platforms: ['iOS'] }) isVoiceOverRunningCallback(): Promise { return; } /** * An Android/Amazon Fire OS-specific proxy for the MobileAccessibility.isScreenReaderRunning method. - * @returns result {Promise} A result method to receive the boolean result asynchronously from the native MobileAccessibility plugin. + * @returns {Promise} A result method to receive the boolean result asynchronously from the native MobileAccessibility plugin. */ @Cordova({ platforms: ['Amazon Fire OS', 'Android'] }) isTalkBackRunningCallback(): Promise { return; } @@ -75,98 +75,98 @@ export class MobileAccessibility extends IonicNativePlugin { /** * On Android, this method returns true if ChromeVox is active and properly initialized with access to the text to speech API in the WebView. * If TalkBack is running but ChromeVox is not active, this method is useful to alert the user of a potential problem. - * @returns result {Promise} Returns the result + * @returns {Promise} Returns the result */ @Cordova({ platforms: ['Amazon Fire OS', 'Android'] }) isChromeVoxActive(): Promise { return; } /** * - * @returns result {Promise} Returns the result + * @returns {Promise} Returns the result */ @Cordova({ platforms: ['iOS'] }) isBoldTextEnabledCallback(): Promise { return; } /** * - * @returns result {Promise} Returns the result + * @returns {Promise} Returns the result */ @Cordova() isClosedCaptioningEnabledCallback(): Promise { return; } /** * - * @returns result {Promise} Returns the result + * @returns {Promise} Returns the result */ @Cordova({ platforms: ['iOS'] }) isDarkerSystemColorsEnabledCallback(): Promise { return; } /** * - * @returns result {Promise} Returns the result + * @returns {Promise} Returns the result */ @Cordova({ platforms: ['iOS'] }) isGrayscaleEnabledCallback(): Promise { return; } /** * - * @returns result {Promise} Returns the result + * @returns {Promise} Returns the result */ @Cordova({ platforms: ['iOS'] }) isGuidedAccessEnabledCallback(): Promise { return; } /** * - * @returns result {Promise} Returns the result + * @returns {Promise} Returns the result */ @Cordova({ platforms: ['iOS'] }) isInvertColorsEnabledCallback(): Promise { return; } /** * - * @returns result {Promise} Returns the result + * @returns {Promise} Returns the result */ @Cordova({ platforms: ['iOS'] }) isMonoAudioEnabledCallback(): Promise { return; } /** * - * @returns result {Promise} Returns the result + * @returns {Promise} Returns the result */ @Cordova({ platforms: ['iOS'] }) isReduceMotionEnabledCallback(): Promise { return; } /** * - * @returns result {Promise} Returns the result + * @returns {Promise} Returns the result */ @Cordova({ platforms: ['iOS'] }) isReduceTransparencyEnabledCallback(): Promise { return; } /** * - * @returns result {Promise} Returns the result + * @returns {Promise} Returns the result */ @Cordova({ platforms: ['iOS'] }) isSpeakScreenEnabledCallback(): Promise { return; } /** * - * @returns result {Promise} Returns the result + * @returns {Promise} Returns the result */ @Cordova({ platforms: ['iOS'] }) isSpeakSelectionEnabledCallback(): Promise { return; } /** * - * @returns result {Promise} Returns the result + * @returns {Promise} Returns the result */ @Cordova({ platforms: ['iOS'] }) isSwitchControlRunningCallback(): Promise { return; } /** * - * @returns result {Promise} Returns the result + * @returns {Promise} Returns the result */ @Cordova({ platforms: ['Amazon Fire OS', 'Android'] }) isTouchExplorationEnabledCallback(): Promise { return; } @@ -201,7 +201,7 @@ export class MobileAccessibility extends IonicNativePlugin { * Posts a notification with a string for the screen reader to announce if it is running. * @param mobileAccessibilityNotification {any} * @param value {string} A string to be announced by a screen reader. - * @returns result {Promise} Returns the result + * @returns {Promise} Returns the result */ @Cordova({ platforms: ['iOS'] }) postNotification(mobileAccessibilityNotification: any, value: string): Promise { return; }