-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathStack.bs.js
More file actions
29 lines (20 loc) · 706 Bytes
/
Stack.bs.js
File metadata and controls
29 lines (20 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
'use strict';
var Interop = require("./Interop");
var Stack = require("@react-navigation/stack");
var TransitionSpec = {};
function Make($star) {
return Interop.adaptNavigatorModule(Stack.createStackNavigator());
}
var Navigation = {};
var TransitionSpecs = {};
var CardStyleInterpolators = {};
var HeaderStyleInterpolators = {};
var TransitionPresets = {};
exports.TransitionSpec = TransitionSpec;
exports.Make = Make;
exports.Navigation = Navigation;
exports.TransitionSpecs = TransitionSpecs;
exports.CardStyleInterpolators = CardStyleInterpolators;
exports.HeaderStyleInterpolators = HeaderStyleInterpolators;
exports.TransitionPresets = TransitionPresets;
/* ./Interop Not a pure module */