create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
23 lines (22 loc) • 683 B
Flow
/**
* 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 strict-local
* @format
*/
;
import AnimatedNode from './AnimatedNode';
import NativeAnimatedHelper from '../NativeAnimatedHelper';
declare class AnimatedWithChildren extends AnimatedNode {
_children: Array<AnimatedNode>,
constructor(): any,
__makeNative(): any,
__addChild(child: AnimatedNode): void,
__removeChild(child: AnimatedNode): void,
__getChildren(): Array<AnimatedNode>,
__callListeners(value: number): void,
}
export default AnimatedWithChildren;