mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/36345 `exactOptionalPropertyTypes` is a TypeScript 4.4+ option set by users which changes behavior of optional properties, to disable accepting explicit `undefined`. This is not enabled when using `--strict`, and is stricter than Flow, leading to most of the typings having an `| undefined` unique to TypeScript (added with https://github.com/DefinitelyTyped/DefinitelyTyped/commit/694c663a9486dbe7794d5eb894a691ee9ded318a). We have not always followed this (I have myself previously assumed the two are equivalent). We can enforce that the convention is followed with a plugin `eslint-plugin-redundant-undefined`. This forces us to declare that every optional property accepts an explicit undefined (which Flow would allow). Alternatively, if we do not want to support this, we can enable the existing dtslint rule `no-redundant-undefined`. Changelog: [General][Fixed] - Enforce compatibility with `exactOptionalPropertyTypes` Reviewed By: lunaleaps Differential Revision: D43700862 fbshipit-source-id: 996094762b28918177521a9471d868ba87f0f263
158 lines
4.8 KiB
TypeScript
158 lines
4.8 KiB
TypeScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
import type * as React from 'react';
|
|
import {HostComponent} from '../../../types/public/ReactNativeTypes';
|
|
import {EmitterSubscription} from '../../vendor/emitter/EventEmitter';
|
|
|
|
type AccessibilityChangeEventName =
|
|
| 'change' // deprecated, maps to screenReaderChanged
|
|
| 'boldTextChanged' // iOS-only Event
|
|
| 'grayscaleChanged' // iOS-only Event
|
|
| 'invertColorsChanged' // iOS-only Event
|
|
| 'reduceMotionChanged'
|
|
| 'screenReaderChanged'
|
|
| 'reduceTransparencyChanged'; // iOS-only Event
|
|
|
|
type AccessibilityChangeEvent = boolean;
|
|
|
|
type AccessibilityChangeEventHandler = (
|
|
event: AccessibilityChangeEvent,
|
|
) => void;
|
|
|
|
type AccessibilityAnnouncementEventName = 'announcementFinished'; // iOS-only Event
|
|
|
|
type AccessibilityAnnouncementFinishedEvent = {
|
|
announcement: string;
|
|
success: boolean;
|
|
};
|
|
|
|
type AccessibilityAnnouncementFinishedEventHandler = (
|
|
event: AccessibilityAnnouncementFinishedEvent,
|
|
) => void;
|
|
|
|
type AccessibilityEventTypes = 'click' | 'focus' | 'viewHoverEnter';
|
|
|
|
/**
|
|
* @see https://reactnative.dev/docs/accessibilityinfo
|
|
*/
|
|
export interface AccessibilityInfoStatic {
|
|
/**
|
|
* Query whether bold text is currently enabled.
|
|
*
|
|
* @platform ios
|
|
*/
|
|
isBoldTextEnabled: () => Promise<boolean>;
|
|
|
|
/**
|
|
* Query whether grayscale is currently enabled.
|
|
*
|
|
* @platform ios
|
|
*/
|
|
isGrayscaleEnabled: () => Promise<boolean>;
|
|
|
|
/**
|
|
* Query whether invert colors is currently enabled.
|
|
*
|
|
* @platform ios
|
|
*/
|
|
isInvertColorsEnabled: () => Promise<boolean>;
|
|
|
|
/**
|
|
* Query whether reduce motion is currently enabled.
|
|
*/
|
|
isReduceMotionEnabled: () => Promise<boolean>;
|
|
|
|
/**
|
|
* Query whether reduce motion and prefer cross-fade transitions settings are currently enabled.
|
|
*
|
|
* Returns a promise which resolves to a boolean.
|
|
* The result is `true` when prefer cross-fade transitions is enabled and `false` otherwise.
|
|
*/
|
|
prefersCrossFadeTransitions(): Promise<boolean>;
|
|
|
|
/**
|
|
* Query whether reduce transparency is currently enabled.
|
|
*
|
|
* @platform ios
|
|
*/
|
|
isReduceTransparencyEnabled: () => Promise<boolean>;
|
|
|
|
/**
|
|
* Query whether a screen reader is currently enabled.
|
|
*/
|
|
isScreenReaderEnabled: () => Promise<boolean>;
|
|
|
|
/**
|
|
* Query whether Accessibility Service is currently enabled.
|
|
*
|
|
* Returns a promise which resolves to a boolean.
|
|
* The result is `true` when any service is enabled and `false` otherwise.
|
|
*
|
|
* @platform android
|
|
*/
|
|
isAccessibilityServiceEnabled(): Promise<boolean>;
|
|
|
|
/**
|
|
* Add an event handler. Supported events:
|
|
* - announcementFinished: iOS-only event. Fires when the screen reader has finished making an announcement.
|
|
* The argument to the event handler is a dictionary with these keys:
|
|
* - announcement: The string announced by the screen reader.
|
|
* - success: A boolean indicating whether the announcement was successfully made.
|
|
* - AccessibilityEventName constants other than announcementFinished: Fires on accessibility feature change.
|
|
* The argument to the event handler is a boolean.
|
|
* The boolean is true when the related event's feature is enabled and false otherwise.
|
|
*
|
|
*/
|
|
addEventListener(
|
|
eventName: AccessibilityChangeEventName,
|
|
handler: AccessibilityChangeEventHandler,
|
|
): EmitterSubscription;
|
|
addEventListener(
|
|
eventName: AccessibilityAnnouncementEventName,
|
|
handler: AccessibilityAnnouncementFinishedEventHandler,
|
|
): EmitterSubscription;
|
|
|
|
/**
|
|
* Set accessibility focus to a react component.
|
|
*/
|
|
setAccessibilityFocus: (reactTag: number) => void;
|
|
|
|
/**
|
|
* Post a string to be announced by the screen reader.
|
|
*/
|
|
announceForAccessibility: (announcement: string) => void;
|
|
|
|
/**
|
|
* Post a string to be announced by the screen reader.
|
|
* - `announcement`: The string announced by the screen reader.
|
|
* - `options`: An object that configures the reading options.
|
|
* - `queue`: The announcement will be queued behind existing announcements. iOS only.
|
|
*/
|
|
announceForAccessibilityWithOptions(
|
|
announcement: string,
|
|
options: {queue?: boolean | undefined},
|
|
): void;
|
|
|
|
/**
|
|
* Gets the timeout in millisecond that the user needs.
|
|
* This value is set in "Time to take action (Accessibility timeout)" of "Accessibility" settings.
|
|
*
|
|
* @platform android
|
|
*/
|
|
getRecommendedTimeoutMillis: (originalTimeout: number) => Promise<number>;
|
|
sendAccessibilityEvent: (
|
|
handle: React.ElementRef<HostComponent<unknown>>,
|
|
eventType: AccessibilityEventTypes,
|
|
) => void;
|
|
}
|
|
|
|
export const AccessibilityInfo: AccessibilityInfoStatic;
|
|
export type AccessibilityInfo = AccessibilityInfoStatic;
|