@adobe/react-native-aepmessaging 1.0.0-beta.1 → 1.0.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/.babelrc +2 -2
  2. package/LICENSE +1 -1
  3. package/android/build.gradle +1 -2
  4. package/android/src/main/java/com/adobe/marketing/mobile/reactnative/messaging/RCTAEPMessagingModule.java +1 -1
  5. package/android/src/main/java/com/adobe/marketing/mobile/reactnative/messaging/RCTAEPMessagingPackage.java +1 -1
  6. package/ios/src/RCTAEPMessaging.h +1 -1
  7. package/ios/src/RCTAEPMessaging.m +1 -1
  8. package/js/Messaging.d.ts +5 -0
  9. package/js/Messaging.js +15 -17
  10. package/js/Messaging.js.map +1 -0
  11. package/js/index.d.ts +2 -15
  12. package/js/index.js +8 -13
  13. package/js/index.js.map +1 -0
  14. package/package.json +4 -5
  15. package/ts/Messaging.ts +31 -0
  16. package/ts/index.ts +15 -0
  17. package/tsconfig.json +9 -0
  18. package/.flowconfig +0 -70
  19. package/flow-typed/npm/babel-cli_vx.x.x.js +0 -108
  20. package/flow-typed/npm/babel-eslint_vx.x.x.js +0 -123
  21. package/flow-typed/npm/babel-plugin-module-resolver_vx.x.x.js +0 -81
  22. package/flow-typed/npm/babel-preset-flow_vx.x.x.js +0 -32
  23. package/flow-typed/npm/babel-preset-react-native_vx.x.x.js +0 -80
  24. package/flow-typed/npm/eslint-config-airbnb_vx.x.x.js +0 -73
  25. package/flow-typed/npm/eslint-config-prettier_vx.x.x.js +0 -66
  26. package/flow-typed/npm/eslint-import-resolver-babel-module_vx.x.x.js +0 -32
  27. package/flow-typed/npm/eslint-plugin-flowtype_vx.x.x.js +0 -424
  28. package/flow-typed/npm/eslint-plugin-import_vx.x.x.js +0 -410
  29. package/flow-typed/npm/eslint-plugin-jsx-a11y_vx.x.x.js +0 -1194
  30. package/flow-typed/npm/eslint-plugin-react-native_vx.x.x.js +0 -94
  31. package/flow-typed/npm/eslint-plugin-react_vx.x.x.js +0 -696
  32. package/flow-typed/npm/eslint_vx.x.x.js +0 -2398
  33. package/flow-typed/npm/flow-bin_v0.x.x.js +0 -6
  34. package/flow-typed/npm/flow-typed_vx.x.x.js +0 -193
  35. package/flow-typed/npm/react-native_vx.x.x.js +0 -4288
  36. package/flow-typed/npm-custom/react-native.js +0 -3
package/.babelrc CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
- "presets": ["@babel/preset-flow", "react-native"],
2
+ "presets": ["@babel/preset-typescript", "react-native"],
3
3
  "plugins": [
4
4
  ["module-resolver", {
5
- "root": [ "./js/" ]
5
+ "root": [ "./ts/" ]
6
6
  }]
7
7
  ]
8
8
  }
package/LICENSE CHANGED
@@ -186,7 +186,7 @@ file or class name and description of purpose be included on the
186
186
  same "printed page" as the copyright notice for easier
187
187
  identification within third-party archives.
188
188
 
189
- Copyright 2019 Adobe
189
+ Copyright 2022 Adobe
190
190
 
191
191
  Licensed under the Apache License, Version 2.0 (the "License");
192
192
  you may not use this file except in compliance with the License.
@@ -1,7 +1,7 @@
1
1
  buildscript {
2
2
  repositories {
3
3
  google()
4
- jcenter()
4
+ mavenCentral()
5
5
  }
6
6
 
7
7
  dependencies {
@@ -29,7 +29,6 @@ android {
29
29
  repositories {
30
30
  google()
31
31
  mavenCentral()
32
- jcenter()
33
32
  }
34
33
 
35
34
  dependencies {
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright 2021 Adobe. All rights reserved.
2
+ Copyright 2022 Adobe. All rights reserved.
3
3
  This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
4
  you may not use this file except in compliance with the License. You may obtain a copy
5
5
  of the License at http://www.apache.org/licenses/LICENSE-2.0
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright 2021 Adobe. All rights reserved.
2
+ Copyright 2022 Adobe. All rights reserved.
3
3
  This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
4
  you may not use this file except in compliance with the License. You may obtain a copy
5
5
  of the License at http://www.apache.org/licenses/LICENSE-2.0
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright 2021 Adobe. All rights reserved.
2
+ Copyright 2022 Adobe. All rights reserved.
3
3
  This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
4
  you may not use this file except in compliance with the License. You may obtain a copy
5
5
  of the License at http://www.apache.org/licenses/LICENSE-2.0
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright 2021 Adobe. All rights reserved.
2
+ Copyright 2022 Adobe. All rights reserved.
3
3
  This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
4
  you may not use this file except in compliance with the License. You may obtain a copy
5
5
  of the License at http://www.apache.org/licenses/LICENSE-2.0
@@ -0,0 +1,5 @@
1
+ interface IMessaging {
2
+ extensionVersion: () => Promise<string>;
3
+ }
4
+ declare const Messaging: IMessaging;
5
+ export default Messaging;
package/js/Messaging.js CHANGED
@@ -1,5 +1,6 @@
1
+ "use strict";
1
2
  /*
2
- Copyright 2021 Adobe. All rights reserved.
3
+ Copyright 2022 Adobe. All rights reserved.
3
4
  This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
5
  you may not use this file except in compliance with the License. You may obtain a copy
5
6
  of the License at http://www.apache.org/licenses/LICENSE-2.0
@@ -8,21 +9,18 @@ Unless required by applicable law or agreed to in writing, software distributed
8
9
  the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
10
  OF ANY KIND, either express or implied. See the License for the specific language
10
11
  governing permissions and limitations under the License.
11
-
12
- @flow
13
- @format
14
12
  */
15
-
16
- 'use strict';
17
-
18
- const RCTAEPMessaging = require('react-native').NativeModules.AEPMessaging;
19
-
20
- module.exports = {
21
- /**
22
- * Returns the version of the AEPMessaging extension
23
- * @param {string} Promise a promise that resolves with the extension verison
24
- */
25
- extensionVersion(): Promise<string> {
26
- return Promise.resolve(RCTAEPMessaging.extensionVersion());
27
- }
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ const react_native_1 = require("react-native");
15
+ const RCTAEPMessaging = react_native_1.NativeModules.AEPMessaging;
16
+ const Messaging = {
17
+ /**
18
+ * Returns the version of the AEPMessaging extension
19
+ * @param {string} Promise a promise that resolves with the extension version
20
+ */
21
+ extensionVersion() {
22
+ return Promise.resolve(RCTAEPMessaging.extensionVersion());
23
+ }
28
24
  };
25
+ exports.default = Messaging;
26
+ //# sourceMappingURL=Messaging.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Messaging.js","sourceRoot":"","sources":["../ts/Messaging.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;EAUE;;AAEF,+CAA6C;AAM7C,MAAM,eAAe,GAAe,4BAAa,CAAC,YAAY,CAAC;AAE/D,MAAM,SAAS,GAAe;IAC5B;;;OAGG;IACH,gBAAgB;QACd,OAAO,OAAO,CAAC,OAAO,CAAC,eAAe,CAAC,gBAAgB,EAAE,CAAC,CAAC;IAC7D,CAAC;CACF,CAAC;AAEF,kBAAe,SAAS,CAAC"}
package/js/index.d.ts CHANGED
@@ -1,15 +1,2 @@
1
- /*
2
- Copyright 2021 Adobe. All rights reserved.
3
- This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License. You may obtain a copy
5
- of the License at http://www.apache.org/licenses/LICENSE-2.0
6
-
7
- Unless required by applicable law or agreed to in writing, software distributed under
8
- the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
- OF ANY KIND, either express or implied. See the License for the specific language
10
- governing permissions and limitations under the License.
11
-
12
- */
13
- export class Messaging {
14
- static extensionVersion(): Promise<string>;
15
- };
1
+ import Messaging from './Messaging';
2
+ export { Messaging };
package/js/index.js CHANGED
@@ -1,5 +1,6 @@
1
+ "use strict";
1
2
  /*
2
- Copyright 2021 Adobe. All rights reserved.
3
+ Copyright 2022 Adobe. All rights reserved.
3
4
  This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
5
  you may not use this file except in compliance with the License. You may obtain a copy
5
6
  of the License at http://www.apache.org/licenses/LICENSE-2.0
@@ -8,16 +9,10 @@ Unless required by applicable law or agreed to in writing, software distributed
8
9
  the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
10
  OF ANY KIND, either express or implied. See the License for the specific language
10
11
  governing permissions and limitations under the License.
11
-
12
- @flow
13
- @format
14
12
  */
15
-
16
- 'use strict';
17
-
18
- module.exports = {
19
- // Native modules
20
- get Messaging() {
21
- return require('./Messaging.js');
22
- },
23
- };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.Messaging = void 0;
15
+ const tslib_1 = require("tslib");
16
+ const Messaging_1 = (0, tslib_1.__importDefault)(require("./Messaging"));
17
+ exports.Messaging = Messaging_1.default;
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../ts/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;EAUE;;;;AAEF,yEAAoC;AAE3B,oBAFF,mBAAS,CAEE"}
package/package.json CHANGED
@@ -1,14 +1,13 @@
1
1
  {
2
2
  "name": "@adobe/react-native-aepmessaging",
3
- "version": "1.0.0-beta.1",
3
+ "version": "1.0.0-beta.2",
4
4
  "description": "Adobe Experience Platform support for React Native apps.",
5
5
  "homepage": "https://aep-sdks.gitbook.io/docs/",
6
6
  "license": "Apache-2.0",
7
- "main": "./js/index.js",
8
- "types": "./js/index.d.ts",
7
+ "main": "./ts/index.ts",
9
8
  "scripts": {
10
9
  "cleanup": "rm -rf node_modules",
11
- "flow": "flow"
10
+ "tsc": "tsc"
12
11
  },
13
12
  "repository": {
14
13
  "type": "git",
@@ -36,5 +35,5 @@
36
35
  "publishConfig": {
37
36
  "access": "public"
38
37
  },
39
- "gitHead": "86ecce95fd1d8f0971c424e1471c6885380c738b"
38
+ "gitHead": "a7d0febed8bcb7c58025bff4daa6a974953f3de4"
40
39
  }
@@ -0,0 +1,31 @@
1
+ /*
2
+ Copyright 2022 Adobe. All rights reserved.
3
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License. You may obtain a copy
5
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ Unless required by applicable law or agreed to in writing, software distributed under
8
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
+ OF ANY KIND, either express or implied. See the License for the specific language
10
+ governing permissions and limitations under the License.
11
+ */
12
+
13
+ import { NativeModules } from 'react-native';
14
+
15
+ interface IMessaging {
16
+ extensionVersion: () => Promise<string>;
17
+ }
18
+
19
+ const RCTAEPMessaging: IMessaging = NativeModules.AEPMessaging;
20
+
21
+ const Messaging: IMessaging = {
22
+ /**
23
+ * Returns the version of the AEPMessaging extension
24
+ * @param {string} Promise a promise that resolves with the extension version
25
+ */
26
+ extensionVersion(): Promise<string> {
27
+ return Promise.resolve(RCTAEPMessaging.extensionVersion());
28
+ }
29
+ };
30
+
31
+ export default Messaging;
package/ts/index.ts ADDED
@@ -0,0 +1,15 @@
1
+ /*
2
+ Copyright 2022 Adobe. All rights reserved.
3
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License. You may obtain a copy
5
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ Unless required by applicable law or agreed to in writing, software distributed under
8
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
+ OF ANY KIND, either express or implied. See the License for the specific language
10
+ governing permissions and limitations under the License.
11
+ */
12
+
13
+ import Messaging from './Messaging';
14
+
15
+ export { Messaging };
package/tsconfig.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "extends": "../../tsconfig.json",
3
+ "compilerOptions": {
4
+ "noEmit": false,
5
+ "rootDir": "./ts",
6
+ "outDir": "./js"
7
+ },
8
+ "exclude": ["__tests__", "js"]
9
+ }
package/.flowconfig DELETED
@@ -1,70 +0,0 @@
1
- [ignore]
2
- ; We fork some components by platform
3
- .*/*[.]android.js
4
-
5
- ; Ignore "BUCK" generated dirs
6
- <PROJECT_ROOT>/\.buckd/
7
-
8
- ; Ignore unexpected extra "@providesModule"
9
- .*/node_modules/.*/node_modules/fbjs/.*
10
-
11
- ; Ignore templates for 'react-native init'
12
- <PROJECT_ROOT>/node_modules/react-native/local-cli/.*
13
-
14
- ; Ignore polyfills
15
- <PROJECT_ROOT>/node_modules/react-native/Libraries/polyfills/.*
16
-
17
- ; Ignore various node_modules
18
- <PROJECT_ROOT>/node_modules/metro/.*
19
-
20
- ; Ignore RN jest
21
- <PROJECT_ROOT>/node_modules/react-native/.*
22
-
23
- ; Ignore Example
24
- <PROJECT_ROOT>/sample/*
25
-
26
-
27
- [include]
28
- <PROJECT_ROOT>/node_modules/react-native/Libraries/StyleSheet/StyleSheetTypes
29
-
30
- [libs]
31
- node_modules/react-native/Libraries/react-native/react-native-interface.js
32
- node_modules/react-native/flow
33
- flow-typed/
34
-
35
- [options]
36
- module.system=haste
37
-
38
- emoji=true
39
-
40
- munge_underscores=true
41
-
42
- module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub'
43
-
44
- module.system.node.resolve_dirname=node_modules
45
- module.system.node.resolve_dirname=./src/
46
-
47
- module.file_ext=.js
48
- module.file_ext=.jsx
49
- module.file_ext=.json
50
- module.file_ext=.native.js
51
-
52
- suppress_type=$FlowIssue
53
- suppress_type=$FlowFixMe
54
- suppress_type=$FixMe
55
-
56
- suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(4[0-9]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
57
- suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(4[0-9]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
58
- suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
59
- suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
60
-
61
- esproposal.decorators=ignore
62
-
63
- module.name_mapper.extension='png' -> 'emptyObject'
64
- module.name_mapper='^react-navigation$' -> 'emptyObject'
65
-
66
- ; https://github.com/facebook/react-native/issues/14927
67
- module.name_mapper='^./link/link$' -> 'emptyObject'
68
-
69
- [version]
70
- 0.92.0
@@ -1,108 +0,0 @@
1
- // flow-typed signature: dbbf97fda4b804bb1bd1a12afdb8bf31
2
- // flow-typed version: <<STUB>>/babel-cli_v^6.26.0/flow_v0.92.0
3
-
4
- /**
5
- * This is an autogenerated libdef stub for:
6
- *
7
- * 'babel-cli'
8
- *
9
- * Fill this stub out by replacing all the `any` types.
10
- *
11
- * Once filled out, we encourage you to share your work with the
12
- * community by sending a pull request to:
13
- * https://github.com/flowtype/flow-typed
14
- */
15
-
16
- declare module 'babel-cli' {
17
- declare module.exports: any;
18
- }
19
-
20
- /**
21
- * We include stubs for each file inside this npm package in case you need to
22
- * require those files directly. Feel free to delete any files that aren't
23
- * needed.
24
- */
25
- declare module 'babel-cli/bin/babel-doctor' {
26
- declare module.exports: any;
27
- }
28
-
29
- declare module 'babel-cli/bin/babel-external-helpers' {
30
- declare module.exports: any;
31
- }
32
-
33
- declare module 'babel-cli/bin/babel-node' {
34
- declare module.exports: any;
35
- }
36
-
37
- declare module 'babel-cli/bin/babel' {
38
- declare module.exports: any;
39
- }
40
-
41
- declare module 'babel-cli/lib/_babel-node' {
42
- declare module.exports: any;
43
- }
44
-
45
- declare module 'babel-cli/lib/babel-external-helpers' {
46
- declare module.exports: any;
47
- }
48
-
49
- declare module 'babel-cli/lib/babel-node' {
50
- declare module.exports: any;
51
- }
52
-
53
- declare module 'babel-cli/lib/babel/dir' {
54
- declare module.exports: any;
55
- }
56
-
57
- declare module 'babel-cli/lib/babel/file' {
58
- declare module.exports: any;
59
- }
60
-
61
- declare module 'babel-cli/lib/babel/index' {
62
- declare module.exports: any;
63
- }
64
-
65
- declare module 'babel-cli/lib/babel/util' {
66
- declare module.exports: any;
67
- }
68
-
69
- // Filename aliases
70
- declare module 'babel-cli/bin/babel-doctor.js' {
71
- declare module.exports: $Exports<'babel-cli/bin/babel-doctor'>;
72
- }
73
- declare module 'babel-cli/bin/babel-external-helpers.js' {
74
- declare module.exports: $Exports<'babel-cli/bin/babel-external-helpers'>;
75
- }
76
- declare module 'babel-cli/bin/babel-node.js' {
77
- declare module.exports: $Exports<'babel-cli/bin/babel-node'>;
78
- }
79
- declare module 'babel-cli/bin/babel.js' {
80
- declare module.exports: $Exports<'babel-cli/bin/babel'>;
81
- }
82
- declare module 'babel-cli/index' {
83
- declare module.exports: $Exports<'babel-cli'>;
84
- }
85
- declare module 'babel-cli/index.js' {
86
- declare module.exports: $Exports<'babel-cli'>;
87
- }
88
- declare module 'babel-cli/lib/_babel-node.js' {
89
- declare module.exports: $Exports<'babel-cli/lib/_babel-node'>;
90
- }
91
- declare module 'babel-cli/lib/babel-external-helpers.js' {
92
- declare module.exports: $Exports<'babel-cli/lib/babel-external-helpers'>;
93
- }
94
- declare module 'babel-cli/lib/babel-node.js' {
95
- declare module.exports: $Exports<'babel-cli/lib/babel-node'>;
96
- }
97
- declare module 'babel-cli/lib/babel/dir.js' {
98
- declare module.exports: $Exports<'babel-cli/lib/babel/dir'>;
99
- }
100
- declare module 'babel-cli/lib/babel/file.js' {
101
- declare module.exports: $Exports<'babel-cli/lib/babel/file'>;
102
- }
103
- declare module 'babel-cli/lib/babel/index.js' {
104
- declare module.exports: $Exports<'babel-cli/lib/babel/index'>;
105
- }
106
- declare module 'babel-cli/lib/babel/util.js' {
107
- declare module.exports: $Exports<'babel-cli/lib/babel/util'>;
108
- }
@@ -1,123 +0,0 @@
1
- // flow-typed signature: 7265767162488d59e86e4e15ca132f34
2
- // flow-typed version: <<STUB>>/babel-eslint_v^8.2.2/flow_v0.92.0
3
-
4
- /**
5
- * This is an autogenerated libdef stub for:
6
- *
7
- * 'babel-eslint'
8
- *
9
- * Fill this stub out by replacing all the `any` types.
10
- *
11
- * Once filled out, we encourage you to share your work with the
12
- * community by sending a pull request to:
13
- * https://github.com/flowtype/flow-typed
14
- */
15
-
16
- declare module 'babel-eslint' {
17
- declare module.exports: any;
18
- }
19
-
20
- /**
21
- * We include stubs for each file inside this npm package in case you need to
22
- * require those files directly. Feel free to delete any files that aren't
23
- * needed.
24
- */
25
- declare module 'babel-eslint/lib/analyze-scope' {
26
- declare module.exports: any;
27
- }
28
-
29
- declare module 'babel-eslint/lib/babylon-to-espree/attachComments' {
30
- declare module.exports: any;
31
- }
32
-
33
- declare module 'babel-eslint/lib/babylon-to-espree/convertComments' {
34
- declare module.exports: any;
35
- }
36
-
37
- declare module 'babel-eslint/lib/babylon-to-espree/convertTemplateType' {
38
- declare module.exports: any;
39
- }
40
-
41
- declare module 'babel-eslint/lib/babylon-to-espree/index' {
42
- declare module.exports: any;
43
- }
44
-
45
- declare module 'babel-eslint/lib/babylon-to-espree/toAST' {
46
- declare module.exports: any;
47
- }
48
-
49
- declare module 'babel-eslint/lib/babylon-to-espree/toToken' {
50
- declare module.exports: any;
51
- }
52
-
53
- declare module 'babel-eslint/lib/babylon-to-espree/toTokens' {
54
- declare module.exports: any;
55
- }
56
-
57
- declare module 'babel-eslint/lib/index' {
58
- declare module.exports: any;
59
- }
60
-
61
- declare module 'babel-eslint/lib/parse-with-patch' {
62
- declare module.exports: any;
63
- }
64
-
65
- declare module 'babel-eslint/lib/parse-with-scope' {
66
- declare module.exports: any;
67
- }
68
-
69
- declare module 'babel-eslint/lib/parse' {
70
- declare module.exports: any;
71
- }
72
-
73
- declare module 'babel-eslint/lib/patch-eslint-scope' {
74
- declare module.exports: any;
75
- }
76
-
77
- declare module 'babel-eslint/lib/visitor-keys' {
78
- declare module.exports: any;
79
- }
80
-
81
- // Filename aliases
82
- declare module 'babel-eslint/lib/analyze-scope.js' {
83
- declare module.exports: $Exports<'babel-eslint/lib/analyze-scope'>;
84
- }
85
- declare module 'babel-eslint/lib/babylon-to-espree/attachComments.js' {
86
- declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/attachComments'>;
87
- }
88
- declare module 'babel-eslint/lib/babylon-to-espree/convertComments.js' {
89
- declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/convertComments'>;
90
- }
91
- declare module 'babel-eslint/lib/babylon-to-espree/convertTemplateType.js' {
92
- declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/convertTemplateType'>;
93
- }
94
- declare module 'babel-eslint/lib/babylon-to-espree/index.js' {
95
- declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/index'>;
96
- }
97
- declare module 'babel-eslint/lib/babylon-to-espree/toAST.js' {
98
- declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/toAST'>;
99
- }
100
- declare module 'babel-eslint/lib/babylon-to-espree/toToken.js' {
101
- declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/toToken'>;
102
- }
103
- declare module 'babel-eslint/lib/babylon-to-espree/toTokens.js' {
104
- declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/toTokens'>;
105
- }
106
- declare module 'babel-eslint/lib/index.js' {
107
- declare module.exports: $Exports<'babel-eslint/lib/index'>;
108
- }
109
- declare module 'babel-eslint/lib/parse-with-patch.js' {
110
- declare module.exports: $Exports<'babel-eslint/lib/parse-with-patch'>;
111
- }
112
- declare module 'babel-eslint/lib/parse-with-scope.js' {
113
- declare module.exports: $Exports<'babel-eslint/lib/parse-with-scope'>;
114
- }
115
- declare module 'babel-eslint/lib/parse.js' {
116
- declare module.exports: $Exports<'babel-eslint/lib/parse'>;
117
- }
118
- declare module 'babel-eslint/lib/patch-eslint-scope.js' {
119
- declare module.exports: $Exports<'babel-eslint/lib/patch-eslint-scope'>;
120
- }
121
- declare module 'babel-eslint/lib/visitor-keys.js' {
122
- declare module.exports: $Exports<'babel-eslint/lib/visitor-keys'>;
123
- }
@@ -1,81 +0,0 @@
1
- // flow-typed signature: 8c634e4f7bb3231de6609711123b25c1
2
- // flow-typed version: <<STUB>>/babel-plugin-module-resolver_v^3.1.3/flow_v0.92.0
3
-
4
- /**
5
- * This is an autogenerated libdef stub for:
6
- *
7
- * 'babel-plugin-module-resolver'
8
- *
9
- * Fill this stub out by replacing all the `any` types.
10
- *
11
- * Once filled out, we encourage you to share your work with the
12
- * community by sending a pull request to:
13
- * https://github.com/flowtype/flow-typed
14
- */
15
-
16
- declare module 'babel-plugin-module-resolver' {
17
- declare module.exports: any;
18
- }
19
-
20
- /**
21
- * We include stubs for each file inside this npm package in case you need to
22
- * require those files directly. Feel free to delete any files that aren't
23
- * needed.
24
- */
25
- declare module 'babel-plugin-module-resolver/lib/index' {
26
- declare module.exports: any;
27
- }
28
-
29
- declare module 'babel-plugin-module-resolver/lib/log' {
30
- declare module.exports: any;
31
- }
32
-
33
- declare module 'babel-plugin-module-resolver/lib/mapToRelative' {
34
- declare module.exports: any;
35
- }
36
-
37
- declare module 'babel-plugin-module-resolver/lib/normalizeOptions' {
38
- declare module.exports: any;
39
- }
40
-
41
- declare module 'babel-plugin-module-resolver/lib/resolvePath' {
42
- declare module.exports: any;
43
- }
44
-
45
- declare module 'babel-plugin-module-resolver/lib/transformers/call' {
46
- declare module.exports: any;
47
- }
48
-
49
- declare module 'babel-plugin-module-resolver/lib/transformers/import' {
50
- declare module.exports: any;
51
- }
52
-
53
- declare module 'babel-plugin-module-resolver/lib/utils' {
54
- declare module.exports: any;
55
- }
56
-
57
- // Filename aliases
58
- declare module 'babel-plugin-module-resolver/lib/index.js' {
59
- declare module.exports: $Exports<'babel-plugin-module-resolver/lib/index'>;
60
- }
61
- declare module 'babel-plugin-module-resolver/lib/log.js' {
62
- declare module.exports: $Exports<'babel-plugin-module-resolver/lib/log'>;
63
- }
64
- declare module 'babel-plugin-module-resolver/lib/mapToRelative.js' {
65
- declare module.exports: $Exports<'babel-plugin-module-resolver/lib/mapToRelative'>;
66
- }
67
- declare module 'babel-plugin-module-resolver/lib/normalizeOptions.js' {
68
- declare module.exports: $Exports<'babel-plugin-module-resolver/lib/normalizeOptions'>;
69
- }
70
- declare module 'babel-plugin-module-resolver/lib/resolvePath.js' {
71
- declare module.exports: $Exports<'babel-plugin-module-resolver/lib/resolvePath'>;
72
- }
73
- declare module 'babel-plugin-module-resolver/lib/transformers/call.js' {
74
- declare module.exports: $Exports<'babel-plugin-module-resolver/lib/transformers/call'>;
75
- }
76
- declare module 'babel-plugin-module-resolver/lib/transformers/import.js' {
77
- declare module.exports: $Exports<'babel-plugin-module-resolver/lib/transformers/import'>;
78
- }
79
- declare module 'babel-plugin-module-resolver/lib/utils.js' {
80
- declare module.exports: $Exports<'babel-plugin-module-resolver/lib/utils'>;
81
- }