react-native-tvos 0.87.1-0 → 0.87.1-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Libraries/Core/ReactNativeVersion.js +1 -1
- package/React/Base/RCTVersion.m +1 -1
- package/ReactAndroid/gradle.properties +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.kt +1 -1
- package/ReactCommon/cxxreact/ReactNativeVersion.h +1 -1
- package/package.json +2 -2
- package/types_generated/Libraries/ActionSheetIOS/ActionSheetIOS.d.ts +96 -0
- package/types_generated/Libraries/Alert/Alert.d.ts +92 -0
- package/types_generated/Libraries/Animated/Animated.d.ts +14 -0
- package/types_generated/Libraries/Animated/AnimatedEvent.d.ts +30 -0
- package/types_generated/Libraries/Animated/AnimatedExports.d.ts +191 -0
- package/types_generated/Libraries/Animated/AnimatedImplementation.d.ts +232 -0
- package/types_generated/Libraries/Animated/AnimatedPlatformConfig.d.ts +13 -0
- package/types_generated/Libraries/Animated/Easing.d.ts +172 -0
- package/types_generated/Libraries/Animated/animations/Animation.d.ts +35 -0
- package/types_generated/Libraries/Animated/animations/DecayAnimation.d.ts +42 -0
- package/types_generated/Libraries/Animated/animations/SpringAnimation.d.ts +130 -0
- package/types_generated/Libraries/Animated/animations/TimingAnimation.d.ts +54 -0
- package/types_generated/Libraries/Animated/components/AnimatedFlatList.d.ts +22 -0
- package/types_generated/Libraries/Animated/components/AnimatedImage.d.ts +18 -0
- package/types_generated/Libraries/Animated/components/AnimatedScrollView.d.ts +23 -0
- package/types_generated/Libraries/Animated/components/AnimatedSectionList.d.ts +22 -0
- package/types_generated/Libraries/Animated/components/AnimatedText.d.ts +18 -0
- package/types_generated/Libraries/Animated/components/AnimatedView.d.ts +19 -0
- package/types_generated/Libraries/Animated/createAnimatedComponent.d.ts +44 -0
- package/types_generated/Libraries/Animated/nodes/AnimatedAddition.d.ts +22 -0
- package/types_generated/Libraries/Animated/nodes/AnimatedColor.d.ts +80 -0
- package/types_generated/Libraries/Animated/nodes/AnimatedDiffClamp.d.ts +22 -0
- package/types_generated/Libraries/Animated/nodes/AnimatedDivision.d.ts +22 -0
- package/types_generated/Libraries/Animated/nodes/AnimatedInterpolation.d.ts +38 -0
- package/types_generated/Libraries/Animated/nodes/AnimatedModulo.d.ts +22 -0
- package/types_generated/Libraries/Animated/nodes/AnimatedMultiplication.d.ts +22 -0
- package/types_generated/Libraries/Animated/nodes/AnimatedNode.d.ts +50 -0
- package/types_generated/Libraries/Animated/nodes/AnimatedProps.d.ts +30 -0
- package/types_generated/Libraries/Animated/nodes/AnimatedStyle.d.ts +32 -0
- package/types_generated/Libraries/Animated/nodes/AnimatedSubtraction.d.ts +22 -0
- package/types_generated/Libraries/Animated/nodes/AnimatedTracking.d.ts +21 -0
- package/types_generated/Libraries/Animated/nodes/AnimatedValue.d.ts +126 -0
- package/types_generated/Libraries/Animated/nodes/AnimatedValueXY.d.ts +135 -0
- package/types_generated/Libraries/Animated/nodes/AnimatedWithChildren.d.ts +15 -0
- package/types_generated/Libraries/Animated/useAnimatedColor.d.ts +16 -0
- package/types_generated/Libraries/Animated/useAnimatedValue.d.ts +15 -0
- package/types_generated/Libraries/Animated/useAnimatedValueXY.d.ts +18 -0
- package/types_generated/Libraries/AppState/AppState.d.ts +82 -0
- package/types_generated/Libraries/BatchedBridge/BatchedBridge.d.ts +17 -0
- package/types_generated/Libraries/BatchedBridge/MessageQueue.d.ts +39 -0
- package/types_generated/Libraries/BatchedBridge/NativeModules.d.ts +27 -0
- package/types_generated/Libraries/Blob/Blob.d.ts +80 -0
- package/types_generated/Libraries/Blob/BlobTypes.d.ts +27 -0
- package/types_generated/Libraries/Components/AccessibilityInfo/AccessibilityInfo.d.ts +223 -0
- package/types_generated/Libraries/Components/AccessibilityInfo/legacySendAccessibilityEvent.d.ts +20 -0
- package/types_generated/Libraries/Components/ActivityIndicator/ActivityIndicator.d.ts +133 -0
- package/types_generated/Libraries/Components/Button.d.ts +167 -0
- package/types_generated/Libraries/Components/Clipboard/Clipboard.d.ts +43 -0
- package/types_generated/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.d.ts +17 -0
- package/types_generated/Libraries/Components/DrawerAndroid/DrawerLayoutAndroidFallback.d.ts +27 -0
- package/types_generated/Libraries/Components/DrawerAndroid/DrawerLayoutAndroidTypes.d.ts +157 -0
- package/types_generated/Libraries/Components/Keyboard/Keyboard.d.ts +115 -0
- package/types_generated/Libraries/Components/Keyboard/KeyboardAvoidingView.d.ts +82 -0
- package/types_generated/Libraries/Components/LayoutConformance/LayoutConformance.d.ts +23 -0
- package/types_generated/Libraries/Components/Pressable/Pressable.d.ts +170 -0
- package/types_generated/Libraries/Components/Pressable/useAndroidRippleForView.d.ts +48 -0
- package/types_generated/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.d.ts +32 -0
- package/types_generated/Libraries/Components/ProgressBarAndroid/ProgressBarAndroidTypes.d.ts +67 -0
- package/types_generated/Libraries/Components/RefreshControl/RefreshControl.d.ts +96 -0
- package/types_generated/Libraries/Components/SafeAreaView/SafeAreaView.d.ts +31 -0
- package/types_generated/Libraries/Components/ScrollView/ScrollView.d.ts +723 -0
- package/types_generated/Libraries/Components/ScrollView/ScrollViewContext.d.ts +24 -0
- package/types_generated/Libraries/Components/ScrollView/ScrollViewStickyHeader.d.ts +36 -0
- package/types_generated/Libraries/Components/StatusBar/StatusBar.d.ts +189 -0
- package/types_generated/Libraries/Components/Switch/Switch.d.ts +143 -0
- package/types_generated/Libraries/Components/TV/TVEventControl.d.ts +23 -0
- package/types_generated/Libraries/Components/TV/TVEventHandler.d.ts +34 -0
- package/types_generated/Libraries/Components/TV/TVFocusGuideView.d.ts +96 -0
- package/types_generated/Libraries/Components/TV/TVTextScrollView.d.ts +97 -0
- package/types_generated/Libraries/Components/TV/TVViewPropTypes.d.ts +123 -0
- package/types_generated/Libraries/Components/TV/tagForComponentOrHandle.d.ts +24 -0
- package/types_generated/Libraries/Components/TV/useTVEventHandler.d.ts +20 -0
- package/types_generated/Libraries/Components/TextInput/InputAccessoryView.d.ts +37 -0
- package/types_generated/Libraries/Components/TextInput/TextInput.d.ts +162 -0
- package/types_generated/Libraries/Components/TextInput/TextInput.flow.d.ts +1020 -0
- package/types_generated/Libraries/Components/TextInput/TextInputState.d.ts +54 -0
- package/types_generated/Libraries/Components/ToastAndroid/ToastAndroid.d.ts +99 -0
- package/types_generated/Libraries/Components/Touchable/TouchableHighlight.d.ts +62 -0
- package/types_generated/Libraries/Components/Touchable/TouchableNativeFeedback.d.ts +155 -0
- package/types_generated/Libraries/Components/Touchable/TouchableOpacity.d.ts +47 -0
- package/types_generated/Libraries/Components/Touchable/TouchableWithoutFeedback.d.ts +121 -0
- package/types_generated/Libraries/Components/View/View.d.ts +34 -0
- package/types_generated/Libraries/Components/View/ViewAccessibility.d.ts +426 -0
- package/types_generated/Libraries/Components/View/ViewNativeComponent.d.ts +38 -0
- package/types_generated/Libraries/Components/View/ViewPropTypes.d.ts +412 -0
- package/types_generated/Libraries/Core/Devtools/symbolicateStackTrace.d.ts +27 -0
- package/types_generated/Libraries/Core/ExceptionsManager.d.ts +43 -0
- package/types_generated/Libraries/Core/ExtendedError.d.ts +26 -0
- package/types_generated/Libraries/Core/NativeExceptionsManager.d.ts +17 -0
- package/types_generated/Libraries/Core/RawEventEmitter.d.ts +26 -0
- package/types_generated/Libraries/Core/ReactFiberErrorDialog.d.ts +27 -0
- package/types_generated/Libraries/Core/ReactNativeVersion.d.ts +48 -0
- package/types_generated/Libraries/Core/registerCallableModule.d.ts +18 -0
- package/types_generated/Libraries/EventEmitter/NativeEventEmitter.d.ts +75 -0
- package/types_generated/Libraries/EventEmitter/RCTDeviceEventEmitter.d.ts +19 -0
- package/types_generated/Libraries/EventEmitter/RCTEventEmitter.d.ts +18 -0
- package/types_generated/Libraries/EventEmitter/RCTNativeAppEventEmitter.d.ts +24 -0
- package/types_generated/Libraries/Image/AssetSourceResolver.d.ts +60 -0
- package/types_generated/Libraries/Image/Image.d.ts +18 -0
- package/types_generated/Libraries/Image/ImageBackground.d.ts +55 -0
- package/types_generated/Libraries/Image/ImageProps.d.ts +462 -0
- package/types_generated/Libraries/Image/ImageResizeMode.d.ts +17 -0
- package/types_generated/Libraries/Image/ImageSource.d.ts +94 -0
- package/types_generated/Libraries/Image/ImageTypes.flow.d.ts +62 -0
- package/types_generated/Libraries/Interaction/PanResponder.d.ts +234 -0
- package/types_generated/Libraries/LayoutAnimation/LayoutAnimation.d.ts +87 -0
- package/types_generated/Libraries/Linking/Linking.d.ts +76 -0
- package/types_generated/Libraries/Lists/FlatList.d.ts +316 -0
- package/types_generated/Libraries/Lists/SectionList.d.ts +177 -0
- package/types_generated/Libraries/Lists/VirtualizedList.d.ts +21 -0
- package/types_generated/Libraries/Lists/VirtualizedSectionList.d.ts +21 -0
- package/types_generated/Libraries/LogBox/Data/LogBoxData.d.ts +78 -0
- package/types_generated/Libraries/LogBox/Data/LogBoxLog.d.ts +71 -0
- package/types_generated/Libraries/LogBox/Data/LogBoxSymbolication.d.ts +17 -0
- package/types_generated/Libraries/LogBox/Data/parseLogBoxLog.d.ts +49 -0
- package/types_generated/Libraries/LogBox/LogBox.d.ts +32 -0
- package/types_generated/Libraries/Modal/Modal.d.ts +145 -0
- package/types_generated/Libraries/NativeComponent/NativeComponentRegistry.d.ts +50 -0
- package/types_generated/Libraries/Network/FormData.d.ts +56 -0
- package/types_generated/Libraries/Network/RCTNetworking.d.ts +25 -0
- package/types_generated/Libraries/Network/RCTNetworkingEventDefinitions.flow.d.ts +22 -0
- package/types_generated/Libraries/Network/XMLHttpRequest.d.ts +114 -0
- package/types_generated/Libraries/Network/convertRequestBody.d.ts +21 -0
- package/types_generated/Libraries/Performance/Systrace.d.ts +71 -0
- package/types_generated/Libraries/PermissionsAndroid/PermissionsAndroid.d.ts +139 -0
- package/types_generated/Libraries/Pressability/Pressability.d.ts +241 -0
- package/types_generated/Libraries/Pressability/usePressability.d.ts +27 -0
- package/types_generated/Libraries/PushNotificationIOS/PushNotificationIOS.d.ts +327 -0
- package/types_generated/Libraries/ReactNative/AppRegistry.d.ts +14 -0
- package/types_generated/Libraries/ReactNative/AppRegistry.flow.d.ts +43 -0
- package/types_generated/Libraries/ReactNative/AppRegistryImpl.d.ts +120 -0
- package/types_generated/Libraries/ReactNative/DisplayMode.d.ts +24 -0
- package/types_generated/Libraries/ReactNative/I18nManager.d.ts +42 -0
- package/types_generated/Libraries/ReactNative/IPerformanceLogger.flow.d.ts +57 -0
- package/types_generated/Libraries/ReactNative/NativeI18nManager.d.ts +17 -0
- package/types_generated/Libraries/ReactNative/NativeUIManager.d.ts +17 -0
- package/types_generated/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance.d.ts +31 -0
- package/types_generated/Libraries/ReactNative/ReactFabricPublicInstance/ReactNativeAttributePayload.d.ts +15 -0
- package/types_generated/Libraries/ReactNative/RendererImplementation.d.ts +36 -0
- package/types_generated/Libraries/ReactNative/RendererProxy.d.ts +13 -0
- package/types_generated/Libraries/ReactNative/RootTag.d.ts +22 -0
- package/types_generated/Libraries/ReactNative/UIManager.d.ts +17 -0
- package/types_generated/Libraries/ReactNative/requireNativeComponent.d.ts +25 -0
- package/types_generated/Libraries/ReactPrivate/ReactNativePrivateInterface.d.ts +17 -0
- package/types_generated/Libraries/Renderer/shims/ReactFabric.d.ts +17 -0
- package/types_generated/Libraries/Renderer/shims/ReactNativeTypes.d.ts +155 -0
- package/types_generated/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.d.ts +41 -0
- package/types_generated/Libraries/Settings/Settings.d.ts +21 -0
- package/types_generated/Libraries/Share/Share.d.ts +82 -0
- package/types_generated/Libraries/StyleSheet/EdgeInsetsPropType.d.ts +15 -0
- package/types_generated/Libraries/StyleSheet/PlatformColorValueTypes.d.ts +23 -0
- package/types_generated/Libraries/StyleSheet/PlatformColorValueTypesIOS.d.ts +27 -0
- package/types_generated/Libraries/StyleSheet/PointPropType.d.ts +16 -0
- package/types_generated/Libraries/StyleSheet/Rect.d.ts +22 -0
- package/types_generated/Libraries/StyleSheet/StyleSheet.d.ts +153 -0
- package/types_generated/Libraries/StyleSheet/StyleSheetExports.d.ts +94 -0
- package/types_generated/Libraries/StyleSheet/StyleSheetTypes.d.ts +872 -0
- package/types_generated/Libraries/StyleSheet/flattenStyle.d.ts +19 -0
- package/types_generated/Libraries/StyleSheet/private/_StyleSheetTypesOverrides.d.ts +17 -0
- package/types_generated/Libraries/StyleSheet/private/_TransformStyle.d.ts +76 -0
- package/types_generated/Libraries/StyleSheet/processColor.d.ts +18 -0
- package/types_generated/Libraries/Text/Text.d.ts +34 -0
- package/types_generated/Libraries/Text/TextAncestorContext.d.ts +20 -0
- package/types_generated/Libraries/Text/TextNativeComponent.d.ts +41 -0
- package/types_generated/Libraries/Text/TextProps.d.ts +175 -0
- package/types_generated/Libraries/TurboModule/RCTExport.d.ts +35 -0
- package/types_generated/Libraries/TurboModule/TurboModuleRegistry.d.ts +15 -0
- package/types_generated/Libraries/Types/CodegenTypes.d.ts +24 -0
- package/types_generated/Libraries/Types/CodegenTypesNamespace.d.ts +14 -0
- package/types_generated/Libraries/Types/CoreEventTypes.d.ts +361 -0
- package/types_generated/Libraries/Types/RootTagTypes.d.ts +13 -0
- package/types_generated/Libraries/Types/UIManagerJSInterface.d.ts +17 -0
- package/types_generated/Libraries/UTFSequence.d.ts +39 -0
- package/types_generated/Libraries/Utilities/Appearance.d.ts +43 -0
- package/types_generated/Libraries/Utilities/BackHandler.d.ts +43 -0
- package/types_generated/Libraries/Utilities/DevSettings.d.ts +41 -0
- package/types_generated/Libraries/Utilities/DeviceInfo.d.ts +17 -0
- package/types_generated/Libraries/Utilities/Dimensions.d.ts +60 -0
- package/types_generated/Libraries/Utilities/NativeAppearance.d.ts +17 -0
- package/types_generated/Libraries/Utilities/NativeDeviceInfo.d.ts +14 -0
- package/types_generated/Libraries/Utilities/PixelRatio.d.ts +113 -0
- package/types_generated/Libraries/Utilities/Platform.d.ts +20 -0
- package/types_generated/Libraries/Utilities/PlatformTypes.d.ts +193 -0
- package/types_generated/Libraries/Utilities/codegenNativeCommands.d.ts +19 -0
- package/types_generated/Libraries/Utilities/codegenNativeComponent.d.ts +24 -0
- package/types_generated/Libraries/Utilities/deepFreezeAndThrowOnMutationInDev.d.ts +33 -0
- package/types_generated/Libraries/Utilities/differ/deepDiffer.d.ts +19 -0
- package/types_generated/Libraries/Utilities/useColorScheme.d.ts +25 -0
- package/types_generated/Libraries/Utilities/useWindowDimensions.d.ts +21 -0
- package/types_generated/Libraries/Vibration/Vibration.d.ts +37 -0
- package/types_generated/Libraries/vendor/core/ErrorUtils.d.ts +39 -0
- package/types_generated/Libraries/vendor/emitter/EventEmitter.d.ts +67 -0
- package/types_generated/index.d.ts +190 -0
- package/types_generated/src/private/assets/AssetRegistry.d.ts +42 -0
- package/types_generated/src/private/components/virtualcollection/FlingConstants.d.ts +20 -0
- package/types_generated/src/private/components/virtualcollection/Virtual.d.ts +46 -0
- package/types_generated/src/private/components/virtualcollection/VirtualCollectionView.d.ts +81 -0
- package/types_generated/src/private/components/virtualcollection/column/VirtualColumn.d.ts +23 -0
- package/types_generated/src/private/components/virtualcollection/column/VirtualColumnGenerator.d.ts +17 -0
- package/types_generated/src/private/components/virtualcollection/dom/getScrollParent.d.ts +21 -0
- package/types_generated/src/private/components/virtualcollection/row/VirtualRow.d.ts +23 -0
- package/types_generated/src/private/components/virtualview/VirtualView.d.ts +75 -0
- package/types_generated/src/private/components/virtualview/VirtualViewExperimentalNativeComponent.d.ts +107 -0
- package/types_generated/src/private/components/virtualview/VirtualViewNativeComponent.d.ts +107 -0
- package/types_generated/src/private/devsupport/devmenu/DevMenu.d.ts +28 -0
- package/types_generated/src/private/renderer/events/dispatchNativeEvent.d.ts +26 -0
- package/types_generated/src/private/specs_DEPRECATED/modules/NativeAppearance.d.ts +27 -0
- package/types_generated/src/private/specs_DEPRECATED/modules/NativeDeviceInfo.d.ts +46 -0
- package/types_generated/src/private/specs_DEPRECATED/modules/NativeExceptionsManager.d.ts +45 -0
- package/types_generated/src/private/specs_DEPRECATED/modules/NativeI18nManager.d.ts +27 -0
- package/types_generated/src/private/specs_DEPRECATED/modules/NativeUIManager.d.ts +109 -0
- package/types_generated/src/private/styles/composeStyles.d.ts +19 -0
- package/types_generated/src/private/types/HostComponent.d.ts +19 -0
- package/types_generated/src/private/types/HostInstance.d.ts +57 -0
- package/types_generated/src/private/webapis/dom/events/CustomEvent.d.ts +27 -0
- package/types_generated/src/private/webapis/dom/events/Event.d.ts +50 -0
- package/types_generated/src/private/webapis/dom/events/EventTarget.d.ts +36 -0
- package/types_generated/src/private/webapis/dom/nodes/ReactNativeDocument.d.ts +35 -0
- package/types_generated/src/private/webapis/dom/nodes/ReactNativeElement.d.ts +89 -0
- package/types_generated/src/private/webapis/dom/nodes/ReadOnlyCharacterData.d.ts +32 -0
- package/types_generated/src/private/webapis/dom/nodes/ReadOnlyElement.d.ts +56 -0
- package/types_generated/src/private/webapis/dom/nodes/ReadOnlyNode.d.ts +131 -0
- package/types_generated/src/private/webapis/dom/nodes/ReadOnlyText.d.ts +26 -0
- package/types_generated/src/private/webapis/dom/nodes/internals/NodeInternals.d.ts +36 -0
- package/types_generated/src/private/webapis/dom/nodes/internals/ReactNativeDocumentElementInstanceHandle.d.ts +23 -0
- package/types_generated/src/private/webapis/dom/nodes/internals/ReactNativeDocumentInstanceHandle.d.ts +22 -0
- package/types_generated/src/private/webapis/dom/nodes/specs/NativeDOM.d.ts +229 -0
- package/types_generated/src/private/webapis/dom/oldstylecollections/HTMLCollection.d.ts +24 -0
- package/types_generated/src/private/webapis/dom/oldstylecollections/NodeList.d.ts +27 -0
- package/types_generated/src/private/webapis/geometry/DOMRect.d.ts +46 -0
- package/types_generated/src/private/webapis/geometry/DOMRectReadOnly.d.ts +73 -0
- package/types_generated/src/private/webapis/utils/ArrayLikeUtils.d.ts +27 -0
- package/types_generated/src/react-private-interface.d.ts +33 -0
- package/types_generated/tsconfig.json +3 -0
|
@@ -29,7 +29,7 @@ export default class ReactNativeVersion {
|
|
|
29
29
|
static major: number = 0;
|
|
30
30
|
static minor: number = 87;
|
|
31
31
|
static patch: number = 1;
|
|
32
|
-
static prerelease: string | null = '
|
|
32
|
+
static prerelease: string | null = '1';
|
|
33
33
|
|
|
34
34
|
static getVersionString(): string {
|
|
35
35
|
return `${this.major}.${this.minor}.${this.patch}${this.prerelease != null ? `-${this.prerelease}` : ''}`;
|
package/React/Base/RCTVersion.m
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-tvos",
|
|
3
|
-
"version": "0.87.1-
|
|
3
|
+
"version": "0.87.1-1",
|
|
4
4
|
"description": "A framework for building native apps using React",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -184,7 +184,7 @@
|
|
|
184
184
|
"whatwg-fetch": "^3.0.0",
|
|
185
185
|
"ws": "^7.5.10",
|
|
186
186
|
"yargs": "^17.6.2",
|
|
187
|
-
"@react-native-tvos/virtualized-lists": "0.87.1-
|
|
187
|
+
"@react-native-tvos/virtualized-lists": "0.87.1-1"
|
|
188
188
|
},
|
|
189
189
|
"codegenConfig": {
|
|
190
190
|
"libraries": [
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
* @generated SignedSource<<c9df6a2ec502499b961157efa0dd4654>>
|
|
8
|
+
*
|
|
9
|
+
* This file was translated from Flow by scripts/js-api/build-types/index.js.
|
|
10
|
+
* Original file: packages/react-native/Libraries/ActionSheetIOS/ActionSheetIOS.js
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
import type { ProcessedColorValue } from "../StyleSheet/processColor";
|
|
14
|
+
import type { ColorValue } from "../StyleSheet/StyleSheet";
|
|
15
|
+
export type ActionSheetIOSOptions = Readonly<{
|
|
16
|
+
title?: string | undefined;
|
|
17
|
+
message?: string | undefined;
|
|
18
|
+
options: Array<string>;
|
|
19
|
+
destructiveButtonIndex?: (number | undefined) | (Array<number> | undefined) | undefined;
|
|
20
|
+
cancelButtonIndex?: number | undefined;
|
|
21
|
+
anchor?: number | undefined;
|
|
22
|
+
tintColor?: ColorValue | ProcessedColorValue | undefined;
|
|
23
|
+
cancelButtonTintColor?: ColorValue | ProcessedColorValue | undefined;
|
|
24
|
+
disabledButtonTintColor?: ColorValue | ProcessedColorValue | undefined;
|
|
25
|
+
userInterfaceStyle?: string | undefined;
|
|
26
|
+
disabledButtonIndices?: Array<number> | undefined;
|
|
27
|
+
}>;
|
|
28
|
+
export type ShareActionSheetIOSOptions = Readonly<{
|
|
29
|
+
message?: string | undefined;
|
|
30
|
+
url?: string | undefined;
|
|
31
|
+
subject?: string | undefined;
|
|
32
|
+
anchor?: number | undefined;
|
|
33
|
+
tintColor?: number | undefined;
|
|
34
|
+
cancelButtonTintColor?: number | undefined;
|
|
35
|
+
disabledButtonTintColor?: number | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* The activities to exclude from the ActionSheet.
|
|
38
|
+
* For example: ['com.apple.UIKit.activity.PostToTwitter']
|
|
39
|
+
*/
|
|
40
|
+
excludedActivityTypes?: Array<string> | undefined;
|
|
41
|
+
userInterfaceStyle?: string | undefined;
|
|
42
|
+
}>;
|
|
43
|
+
export type ShareActionSheetError = Readonly<{
|
|
44
|
+
domain: string;
|
|
45
|
+
code: string;
|
|
46
|
+
userInfo?: Object | undefined;
|
|
47
|
+
message: string;
|
|
48
|
+
}>;
|
|
49
|
+
declare const ActionSheetIOS: {
|
|
50
|
+
/**
|
|
51
|
+
* Display an iOS action sheet.
|
|
52
|
+
*
|
|
53
|
+
* The `options` object must contain one or more of:
|
|
54
|
+
*
|
|
55
|
+
* - `options` (array of strings) - a list of button titles (required)
|
|
56
|
+
* - `cancelButtonIndex` (int) - index of cancel button in `options`
|
|
57
|
+
* - `destructiveButtonIndex` (int or array of ints) - indices of destructive buttons in `options`
|
|
58
|
+
* - `title` (string) - a title to show above the action sheet
|
|
59
|
+
* - `message` (string) - a message to show below the title
|
|
60
|
+
* - `disabledButtonIndices` (array of numbers) - a list of button indices which should be disabled
|
|
61
|
+
*
|
|
62
|
+
* The `callback` function receives the zero-based index of the selected
|
|
63
|
+
* item.
|
|
64
|
+
*/
|
|
65
|
+
showActionSheetWithOptions(options: ActionSheetIOSOptions, callback: (buttonIndex: number) => void): void;
|
|
66
|
+
/**
|
|
67
|
+
* Display the iOS share sheet. The `options` object should contain one or
|
|
68
|
+
* both of `message` and `url` and can additionally have a `subject` or
|
|
69
|
+
* `excludedActivityTypes`:
|
|
70
|
+
*
|
|
71
|
+
* - `url` (string) - a URL to share
|
|
72
|
+
* - `message` (string) - a message to share
|
|
73
|
+
* - `subject` (string) - a subject for the message
|
|
74
|
+
* - `excludedActivityTypes` (array) - the activities to exclude from the ActionSheet
|
|
75
|
+
* - `tintColor` (color) - tint color of the buttons
|
|
76
|
+
*
|
|
77
|
+
* The `failureCallback` function receives an error object. The
|
|
78
|
+
* `successCallback` function receives a boolean indicating success and a
|
|
79
|
+
* string describing the sharing method used.
|
|
80
|
+
*/
|
|
81
|
+
showShareActionSheetWithOptions(options: ShareActionSheetIOSOptions, failureCallback: Function | ((error: ShareActionSheetError) => void), successCallback: Function | ((success: boolean, method: null | undefined | string) => void)): void;
|
|
82
|
+
/**
|
|
83
|
+
* Dismiss the most upper action sheet currently presented. Displays a
|
|
84
|
+
* warning if no action sheet is present.
|
|
85
|
+
*/
|
|
86
|
+
dismissActionSheet: () => void;
|
|
87
|
+
};
|
|
88
|
+
/**
|
|
89
|
+
* Displays native iOS action sheets and share sheets.
|
|
90
|
+
*
|
|
91
|
+
* @see https://reactnative.dev/docs/actionsheetios
|
|
92
|
+
* @platform ios
|
|
93
|
+
*/
|
|
94
|
+
declare const $$ActionSheetIOS: typeof ActionSheetIOS;
|
|
95
|
+
declare type $$ActionSheetIOS = typeof $$ActionSheetIOS;
|
|
96
|
+
export default $$ActionSheetIOS;
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
* @generated SignedSource<<91c4fbdaf5ce348ce30173be24dc7367>>
|
|
8
|
+
*
|
|
9
|
+
* This file was translated from Flow by scripts/js-api/build-types/index.js.
|
|
10
|
+
* Original file: packages/react-native/Libraries/Alert/Alert.js
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* @platform ios
|
|
15
|
+
*/
|
|
16
|
+
export type AlertType = "default" | "plain-text" | "secure-text" | "login-password";
|
|
17
|
+
/**
|
|
18
|
+
* @platform ios
|
|
19
|
+
*/
|
|
20
|
+
export type AlertButtonStyle = "default" | "cancel" | "destructive";
|
|
21
|
+
export type AlertButton = {
|
|
22
|
+
text?: string | undefined;
|
|
23
|
+
onPress?: (((value?: string) => any) | undefined) | (Function | undefined) | undefined;
|
|
24
|
+
isPreferred?: boolean | undefined;
|
|
25
|
+
style?: AlertButtonStyle | undefined;
|
|
26
|
+
};
|
|
27
|
+
export type AlertButtons = Array<AlertButton>;
|
|
28
|
+
export type AlertOptions = {
|
|
29
|
+
/** @platform android */
|
|
30
|
+
cancelable?: boolean | undefined;
|
|
31
|
+
userInterfaceStyle?: "unspecified" | "light" | "dark" | undefined;
|
|
32
|
+
/** @platform android */
|
|
33
|
+
onDismiss?: (() => void) | undefined;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Launches an alert dialog with the specified title and message.
|
|
37
|
+
*
|
|
38
|
+
* Optionally provide a list of buttons. Tapping any button will fire the
|
|
39
|
+
* respective onPress callback and dismiss the alert. By default, the only
|
|
40
|
+
* button will be an 'OK' button.
|
|
41
|
+
*
|
|
42
|
+
* This is an API that works both on iOS and Android and can show static
|
|
43
|
+
* alerts. On iOS, you can show an alert that prompts the user to enter
|
|
44
|
+
* some information.
|
|
45
|
+
*
|
|
46
|
+
* ## iOS
|
|
47
|
+
*
|
|
48
|
+
* On iOS you can specify any number of buttons. Each button can optionally
|
|
49
|
+
* specify a style, which is one of 'default', 'cancel' or 'destructive'.
|
|
50
|
+
*
|
|
51
|
+
* ## Android
|
|
52
|
+
*
|
|
53
|
+
* On Android at most three buttons can be specified. Android has a concept
|
|
54
|
+
* of a neutral, negative and a positive button:
|
|
55
|
+
*
|
|
56
|
+
* - If you specify one button, it will be the 'positive' one (such as 'OK')
|
|
57
|
+
* - Two buttons mean 'negative', 'positive' (such as 'Cancel', 'OK')
|
|
58
|
+
* - Three buttons mean 'neutral', 'negative', 'positive' (such as 'Later', 'Cancel', 'OK')
|
|
59
|
+
*
|
|
60
|
+
* Example:
|
|
61
|
+
*
|
|
62
|
+
* ```tsx
|
|
63
|
+
* // Works on both iOS and Android
|
|
64
|
+
* Alert.alert(
|
|
65
|
+
* 'Alert Title',
|
|
66
|
+
* 'My Alert Msg',
|
|
67
|
+
* [
|
|
68
|
+
* {text: 'Ask me later', onPress: () => console.log('Ask me later pressed')},
|
|
69
|
+
* {text: 'Cancel', onPress: () => console.log('Cancel Pressed'), style: 'cancel'},
|
|
70
|
+
* {text: 'OK', onPress: () => console.log('OK Pressed')},
|
|
71
|
+
* ]
|
|
72
|
+
* )
|
|
73
|
+
* ```
|
|
74
|
+
*
|
|
75
|
+
* @see https://reactnative.dev/docs/alert
|
|
76
|
+
*/
|
|
77
|
+
declare class Alert {
|
|
78
|
+
/**
|
|
79
|
+
* Display an alert dialog with the specified title, message, and buttons.
|
|
80
|
+
* On Android, at most three buttons can be specified. On iOS, any number of
|
|
81
|
+
* buttons can be used.
|
|
82
|
+
*/
|
|
83
|
+
static alert(title: null | undefined | string, message?: null | undefined | string, buttons?: AlertButtons, options?: AlertOptions): void;
|
|
84
|
+
/**
|
|
85
|
+
* Create and display a prompt to enter text. Accepts a title, message,
|
|
86
|
+
* callback or buttons, input type, default value, keyboard type, and options.
|
|
87
|
+
*
|
|
88
|
+
* @platform ios
|
|
89
|
+
*/
|
|
90
|
+
static prompt(title: null | undefined | string, message?: null | undefined | string, callbackOrButtons?: null | undefined | (((text: string) => void) | AlertButtons), type?: null | undefined | AlertType, defaultValue?: string, keyboardType?: string, options?: AlertOptions): void;
|
|
91
|
+
}
|
|
92
|
+
export default Alert;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
* @generated SignedSource<<e78458e6def7485a52e194d9d7546970>>
|
|
8
|
+
*
|
|
9
|
+
* This file was translated from Flow by scripts/js-api/build-types/index.js.
|
|
10
|
+
* Original file: packages/react-native/Libraries/Animated/Animated.js.flow
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
export * as default from "./AnimatedExports";
|
|
14
|
+
export type { CompositeAnimation, Numeric } from "./AnimatedImplementation";
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
* @generated SignedSource<<156c6b4bd89b4931acd61ed1d1291a7e>>
|
|
8
|
+
*
|
|
9
|
+
* This file was translated from Flow by scripts/js-api/build-types/index.js.
|
|
10
|
+
* Original file: packages/react-native/Libraries/Animated/AnimatedEvent.js
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
import type { NativeSyntheticEvent } from "../Types/CoreEventTypes";
|
|
14
|
+
import type { PlatformConfig } from "./AnimatedPlatformConfig";
|
|
15
|
+
import AnimatedValue from "./nodes/AnimatedValue";
|
|
16
|
+
import AnimatedValueXY from "./nodes/AnimatedValueXY";
|
|
17
|
+
export type Mapping = {
|
|
18
|
+
[key: string]: Mapping;
|
|
19
|
+
} | AnimatedValue | AnimatedValueXY;
|
|
20
|
+
export type EventConfig<T> = {
|
|
21
|
+
listener?: (($$PARAM_0$$: NativeSyntheticEvent<T>) => unknown) | undefined;
|
|
22
|
+
useNativeDriver: boolean;
|
|
23
|
+
platformConfig?: PlatformConfig | undefined;
|
|
24
|
+
};
|
|
25
|
+
export declare function attachNativeEventImpl(viewRef: any, eventName: string, argMapping: ReadonlyArray<null | undefined | Mapping>, platformConfig: null | undefined | PlatformConfig): {
|
|
26
|
+
detach: () => void;
|
|
27
|
+
};
|
|
28
|
+
export declare class AnimatedEvent {
|
|
29
|
+
constructor(argMapping: ReadonlyArray<null | undefined | Mapping>, config: EventConfig<any>);
|
|
30
|
+
}
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
* @generated SignedSource<<8cf8d614df17c64a2e6e3616785cbc2e>>
|
|
8
|
+
*
|
|
9
|
+
* This file was translated from Flow by scripts/js-api/build-types/index.js.
|
|
10
|
+
* Original file: packages/react-native/Libraries/Animated/AnimatedExports.js.flow
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
import AnimatedImplementation from "./AnimatedImplementation";
|
|
14
|
+
export type { CompositeAnimation, Numeric } from "./AnimatedImplementation";
|
|
15
|
+
export type { DecayAnimationConfig } from "./animations/DecayAnimation";
|
|
16
|
+
export type { SpringAnimationConfig } from "./animations/SpringAnimation";
|
|
17
|
+
export type { TimingAnimationConfig } from "./animations/TimingAnimation";
|
|
18
|
+
export { default as FlatList } from "./components/AnimatedFlatList";
|
|
19
|
+
export { default as Image } from "./components/AnimatedImage";
|
|
20
|
+
export { default as ScrollView } from "./components/AnimatedScrollView";
|
|
21
|
+
export { default as SectionList } from "./components/AnimatedSectionList";
|
|
22
|
+
export { default as Text } from "./components/AnimatedText";
|
|
23
|
+
export { default as View } from "./components/AnimatedView";
|
|
24
|
+
export { default as Color } from "./nodes/AnimatedColor";
|
|
25
|
+
export { AnimatedEvent as Event } from "./AnimatedEvent";
|
|
26
|
+
export { default as Interpolation } from "./nodes/AnimatedInterpolation";
|
|
27
|
+
export { default as Node } from "./nodes/AnimatedNode";
|
|
28
|
+
export { default as Value } from "./nodes/AnimatedValue";
|
|
29
|
+
export { default as ValueXY } from "./nodes/AnimatedValueXY";
|
|
30
|
+
/** @deprecated Use Animated.Interpolation instead */
|
|
31
|
+
export type { default as AnimatedInterpolation } from "./nodes/AnimatedInterpolation";
|
|
32
|
+
/** @deprecated Use Animated.Color instead */
|
|
33
|
+
export type { default as AnimatedColor } from "./nodes/AnimatedColor";
|
|
34
|
+
export type { AnimatedValueConfig as AnimatedConfig } from "./nodes/AnimatedValue";
|
|
35
|
+
export type { default as AnimatedNode } from "./nodes/AnimatedNode";
|
|
36
|
+
export type { default as AnimatedAddition } from "./nodes/AnimatedAddition";
|
|
37
|
+
export type { default as AnimatedDiffClamp } from "./nodes/AnimatedDiffClamp";
|
|
38
|
+
export type { default as AnimatedDivision } from "./nodes/AnimatedDivision";
|
|
39
|
+
export type { InterpolationConfigType as InterpolationConfig } from "./nodes/AnimatedInterpolation";
|
|
40
|
+
export type { default as AnimatedModulo } from "./nodes/AnimatedModulo";
|
|
41
|
+
export type { default as AnimatedMultiplication } from "./nodes/AnimatedMultiplication";
|
|
42
|
+
export type { default as AnimatedSubtraction } from "./nodes/AnimatedSubtraction";
|
|
43
|
+
export type { WithAnimatedValue, AnimatedProps } from "./createAnimatedComponent";
|
|
44
|
+
export type { AnimatedComponentType as AnimatedComponent } from "./createAnimatedComponent";
|
|
45
|
+
/**
|
|
46
|
+
* Creates a new Animated value composed from two Animated values added
|
|
47
|
+
* together.
|
|
48
|
+
*
|
|
49
|
+
* See https://reactnative.dev/docs/animated#add
|
|
50
|
+
*/
|
|
51
|
+
export declare const add: typeof AnimatedImplementation.add;
|
|
52
|
+
export declare type add = typeof add;
|
|
53
|
+
/**
|
|
54
|
+
* Imperative API to attach an animated value to an event on a view. Prefer
|
|
55
|
+
* using `Animated.event` with `useNativeDrive: true` if possible.
|
|
56
|
+
*
|
|
57
|
+
* See https://reactnative.dev/docs/animated#attachnativeevent
|
|
58
|
+
*/
|
|
59
|
+
export declare const attachNativeEvent: typeof AnimatedImplementation.attachNativeEvent;
|
|
60
|
+
export declare type attachNativeEvent = typeof attachNativeEvent;
|
|
61
|
+
/**
|
|
62
|
+
* Make any React component Animatable. Used to create `Animated.View`, etc.
|
|
63
|
+
*
|
|
64
|
+
* See https://reactnative.dev/docs/animated#createanimatedcomponent
|
|
65
|
+
*/
|
|
66
|
+
export declare const createAnimatedComponent: typeof AnimatedImplementation.createAnimatedComponent;
|
|
67
|
+
export declare type createAnimatedComponent = typeof createAnimatedComponent;
|
|
68
|
+
/**
|
|
69
|
+
* Animates a value from an initial velocity to zero based on a decay
|
|
70
|
+
* coefficient.
|
|
71
|
+
*
|
|
72
|
+
* See https://reactnative.dev/docs/animated#decay
|
|
73
|
+
*/
|
|
74
|
+
export declare const decay: typeof AnimatedImplementation.decay;
|
|
75
|
+
export declare type decay = typeof decay;
|
|
76
|
+
/**
|
|
77
|
+
* Starts an animation after the given delay.
|
|
78
|
+
*
|
|
79
|
+
* See https://reactnative.dev/docs/animated#delay
|
|
80
|
+
*/
|
|
81
|
+
export declare const delay: typeof AnimatedImplementation.delay;
|
|
82
|
+
export declare type delay = typeof delay;
|
|
83
|
+
/**
|
|
84
|
+
* Create a new Animated value that is limited between 2 values. It uses the
|
|
85
|
+
* difference between the last value so even if the value is far from the
|
|
86
|
+
* bounds it will start changing when the value starts getting closer again.
|
|
87
|
+
*
|
|
88
|
+
* See https://reactnative.dev/docs/animated#diffclamp
|
|
89
|
+
*/
|
|
90
|
+
export declare const diffClamp: typeof AnimatedImplementation.diffClamp;
|
|
91
|
+
export declare type diffClamp = typeof diffClamp;
|
|
92
|
+
/**
|
|
93
|
+
* Creates a new Animated value composed by dividing the first Animated value
|
|
94
|
+
* by the second Animated value.
|
|
95
|
+
*
|
|
96
|
+
* See https://reactnative.dev/docs/animated#divide
|
|
97
|
+
*/
|
|
98
|
+
export declare const divide: typeof AnimatedImplementation.divide;
|
|
99
|
+
export declare type divide = typeof divide;
|
|
100
|
+
/**
|
|
101
|
+
* Takes an array of mappings and extracts values from each arg accordingly,
|
|
102
|
+
* then calls `setValue` on the mapped outputs.
|
|
103
|
+
*
|
|
104
|
+
* See https://reactnative.dev/docs/animated#event
|
|
105
|
+
*/
|
|
106
|
+
export declare const event: typeof AnimatedImplementation.event;
|
|
107
|
+
export declare type event = typeof event;
|
|
108
|
+
/**
|
|
109
|
+
* Advanced imperative API for snooping on animated events that are passed in
|
|
110
|
+
* through props. Use values directly where possible.
|
|
111
|
+
*
|
|
112
|
+
* See https://reactnative.dev/docs/animated#forkevent
|
|
113
|
+
*/
|
|
114
|
+
export declare const forkEvent: typeof AnimatedImplementation.forkEvent;
|
|
115
|
+
export declare type forkEvent = typeof forkEvent;
|
|
116
|
+
/**
|
|
117
|
+
* Loops a given animation continuously, so that each time it reaches the
|
|
118
|
+
* end, it resets and begins again from the start.
|
|
119
|
+
*
|
|
120
|
+
* See https://reactnative.dev/docs/animated#loop
|
|
121
|
+
*/
|
|
122
|
+
export declare const loop: typeof AnimatedImplementation.loop;
|
|
123
|
+
export declare type loop = typeof loop;
|
|
124
|
+
/**
|
|
125
|
+
* Creates a new Animated value that is the (non-negative) modulo of the
|
|
126
|
+
* provided Animated value.
|
|
127
|
+
*
|
|
128
|
+
* See https://reactnative.dev/docs/animated#modulo
|
|
129
|
+
*/
|
|
130
|
+
export declare const modulo: typeof AnimatedImplementation.modulo;
|
|
131
|
+
export declare type modulo = typeof modulo;
|
|
132
|
+
/**
|
|
133
|
+
* Creates a new Animated value composed from two Animated values multiplied
|
|
134
|
+
* together.
|
|
135
|
+
*
|
|
136
|
+
* See https://reactnative.dev/docs/animated#multiply
|
|
137
|
+
*/
|
|
138
|
+
export declare const multiply: typeof AnimatedImplementation.multiply;
|
|
139
|
+
export declare type multiply = typeof multiply;
|
|
140
|
+
/**
|
|
141
|
+
* Starts an array of animations all at the same time. By default, if one
|
|
142
|
+
* of the animations is stopped, they will all be stopped. You can override
|
|
143
|
+
* this with the `stopTogether` flag.
|
|
144
|
+
*
|
|
145
|
+
* See https://reactnative.dev/docs/animated#parallel
|
|
146
|
+
*/
|
|
147
|
+
export declare const parallel: typeof AnimatedImplementation.parallel;
|
|
148
|
+
export declare type parallel = typeof parallel;
|
|
149
|
+
/**
|
|
150
|
+
* Starts an array of animations in order, waiting for each to complete
|
|
151
|
+
* before starting the next. If the current running animation is stopped, no
|
|
152
|
+
* following animations will be started.
|
|
153
|
+
*
|
|
154
|
+
* See https://reactnative.dev/docs/animated#sequence
|
|
155
|
+
*/
|
|
156
|
+
export declare const sequence: typeof AnimatedImplementation.sequence;
|
|
157
|
+
export declare type sequence = typeof sequence;
|
|
158
|
+
/**
|
|
159
|
+
* Animates a value according to an analytical spring model based on
|
|
160
|
+
* damped harmonic oscillation.
|
|
161
|
+
*
|
|
162
|
+
* See https://reactnative.dev/docs/animated#spring
|
|
163
|
+
*/
|
|
164
|
+
export declare const spring: typeof AnimatedImplementation.spring;
|
|
165
|
+
export declare type spring = typeof spring;
|
|
166
|
+
/**
|
|
167
|
+
* Array of animations may run in parallel (overlap), but are started in
|
|
168
|
+
* sequence with successive delays. Nice for doing trailing effects.
|
|
169
|
+
*
|
|
170
|
+
* See https://reactnative.dev/docs/animated#stagger
|
|
171
|
+
*/
|
|
172
|
+
export declare const stagger: typeof AnimatedImplementation.stagger;
|
|
173
|
+
export declare type stagger = typeof stagger;
|
|
174
|
+
/**
|
|
175
|
+
* Creates a new Animated value composed by subtracting the second Animated
|
|
176
|
+
* value from the first Animated value.
|
|
177
|
+
*
|
|
178
|
+
* See https://reactnative.dev/docs/animated#subtract
|
|
179
|
+
*/
|
|
180
|
+
export declare const subtract: typeof AnimatedImplementation.subtract;
|
|
181
|
+
export declare type subtract = typeof subtract;
|
|
182
|
+
/**
|
|
183
|
+
* Animates a value along a timed easing curve. The Easing module has tons of
|
|
184
|
+
* predefined curves, or you can use your own function.
|
|
185
|
+
*
|
|
186
|
+
* See https://reactnative.dev/docs/animated#timing
|
|
187
|
+
*/
|
|
188
|
+
export declare const timing: typeof AnimatedImplementation.timing;
|
|
189
|
+
export declare type timing = typeof timing;
|
|
190
|
+
export declare const unforkEvent: typeof AnimatedImplementation.unforkEvent;
|
|
191
|
+
export declare type unforkEvent = typeof unforkEvent;
|