UNPKG

524 BJavaScriptView Raw
1export default {
2 async disconnectNodeFromView() {
3 // noop
4 },
5 async attachEvent(viewTag, eventName, nodeID) {
6 // noop
7 },
8 async detachEvent(viewTag, eventName, nodeID) {
9 // noop
10 },
11 async createNode(nodeID, config) {
12 // noop
13 },
14 async dropNode(nodeID) {
15 // noop
16 },
17 async configureProps() {
18 // noop
19 },
20 async disconnectNodes() {
21 // noop
22 },
23 async animateNextTransition() {
24 console.warn('Reanimated: animateNextTransition is unimplemented on current platform');
25 },
26};