metro-runtime 0.76.0 → 0.76.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "metro-runtime",
3
- "version": "0.76.0",
3
+ "version": "0.76.2",
4
4
  "description": "🚇 Module required for evaluating Metro bundles.",
5
5
  "main": "src",
6
6
  "repository": {
@@ -12,7 +12,6 @@
12
12
  'use strict';
13
13
 
14
14
  export type ModuleMap = $ReadOnlyArray<[number, string]>;
15
- export type BytecodeModuleMap = $ReadOnlyArray<[number, Array<Buffer>]>;
16
15
 
17
16
  export type Bundle = {
18
17
  +modules: ModuleMap,
@@ -20,12 +19,6 @@ export type Bundle = {
20
19
  +pre: string,
21
20
  };
22
21
 
23
- export type BytecodeBundle = {
24
- +modules: BytecodeModuleMap,
25
- +post: Array<Buffer>,
26
- +pre: Array<Buffer>,
27
- };
28
-
29
22
  export type DeltaBundle = {
30
23
  +added: ModuleMap,
31
24
  +modified: ModuleMap,