react-native-web
Version:
React Native for Web
30 lines (28 loc) • 1.05 kB
Flow
/**
* 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.
*
* @flow
* @format
*/
;
import type AnimatedNode from './AnimatedNode';
import type { InterpolationConfigType } from './AnimatedInterpolation';
import type { PlatformConfig } from '../AnimatedPlatformConfig';
import AnimatedInterpolation from './AnimatedInterpolation';
import AnimatedValue from './AnimatedValue';
import AnimatedWithChildren from './AnimatedWithChildren';
declare class AnimatedSubtraction extends AnimatedWithChildren {
_a: AnimatedNode,
_b: AnimatedNode,
constructor(a: AnimatedNode | number, b: AnimatedNode | number): any,
__makeNative(platformConfig: ?PlatformConfig): any,
__getValue(): number,
interpolate<OutputT: number | string>(config: InterpolationConfigType<OutputT>): AnimatedInterpolation<OutputT>,
__attach(): void,
__detach(): void,
__getNativeConfig(): any,
}
export default AnimatedSubtraction;