1export interface ModuleConfiguration {
2  /**
3   * Name of the module from `package.json`.
4   */
5  npmModuleName: string;
6
7  /**
8   * Name of the pod for this module, used by the CocoaPods iOS package manager.
9   */
10  podName: string;
11
12  /**
13   * The Android library's package name.
14   */
15  javaPackage: string;
16
17  /**
18   * Name of the JavaScript package.
19   */
20  jsPackageName: string;
21
22  /**
23   * Indicates whether the module has a native ViewManager.
24   */
25  viewManager: boolean;
26}
27