UNPKG

react-native

Version:

A framework for building native apps using React

23 lines (21 loc) 1.04 kB
/** * 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. * * @generated SignedSource<<4e62e8d749da5f7dbf5a81625da5452c>> * * This file was translated from Flow by scripts/build-types/index.js. * Original file: packages/react-native/Libraries/Animated/nodes/AnimatedDivision.js */ import type { InterpolationConfigType } from "./AnimatedInterpolation"; import type { AnimatedNodeConfig } from "./AnimatedNode"; import AnimatedInterpolation from "./AnimatedInterpolation"; import AnimatedNode from "./AnimatedNode"; import AnimatedWithChildren from "./AnimatedWithChildren"; declare class AnimatedDivision extends AnimatedWithChildren { constructor(a: AnimatedNode | number, b: AnimatedNode | number, config?: null | undefined | AnimatedNodeConfig); interpolate<OutputT extends number | string>(config: InterpolationConfigType<OutputT>): AnimatedInterpolation<OutputT>; } export default AnimatedDivision;