UNPKG

create-expo-cljs-app

Version:

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

29 lines (28 loc) 898 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 AnimatedNode from './AnimatedNode'; import AnimatedTransform from './AnimatedTransform'; import AnimatedWithChildren from './AnimatedWithChildren'; import NativeAnimatedHelper from '../NativeAnimatedHelper'; import flattenStyle from '../../../../exports/StyleSheet/flattenStyle'; declare class AnimatedStyle extends AnimatedWithChildren { _style: Object, constructor(style: any): any, _walkStyleAndGetValues(style: any): any, __getValue(): Object, _walkStyleAndGetAnimatedValues(style: any): any, __getAnimatedValue(): Object, __attach(): void, __detach(): void, __makeNative(): any, __getNativeConfig(): Object, } export default AnimatedStyle;