UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

29 lines (28 loc) 938 B
/** * Copyright (c) Facebook, Inc. and its 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 */ 'use strict'; import AnimatedInterpolation from './AnimatedInterpolation'; import AnimatedNode from './AnimatedNode'; import AnimatedValue from './AnimatedValue'; import AnimatedWithChildren from './AnimatedWithChildren'; import type { InterpolationConfigType } from './AnimatedInterpolation'; declare class AnimatedDivision extends AnimatedWithChildren { _a: AnimatedNode, _b: AnimatedNode, _warnedAboutDivideByZero: boolean, constructor(a: AnimatedNode | number, b: AnimatedNode | number): any, __makeNative(): any, __getValue(): number, interpolate(config: InterpolationConfigType): AnimatedInterpolation, __attach(): void, __detach(): void, __getNativeConfig(): any, } export default AnimatedDivision;