UNPKG

create-expo-cljs-app

Version:

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

30 lines (29 loc) 901 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 AnimatedWithChildren from './AnimatedWithChildren'; import type { InterpolationConfigType } from './AnimatedInterpolation'; declare class AnimatedDiffClamp extends AnimatedWithChildren { _a: AnimatedNode, _min: number, _max: number, _value: number, _lastValue: number, constructor(a: AnimatedNode, min: number, max: number): any, __makeNative(): any, interpolate(config: InterpolationConfigType): AnimatedInterpolation, __getValue(): number, __attach(): void, __detach(): void, __getNativeConfig(): any, } export default AnimatedDiffClamp;