Lifting & Lowering¶
Lifting¶
Lifting describes how to take a low-level thing and convert it into a higher-level thing.
| From | To |
|---|---|
| Module function exports | Component function exports |
| [Module values] | [Component values] |
Lowering¶
Lowering describes how to take a high-level thing and convert it into a lower-level thing.
| From | To |
|---|---|
| Component function imports | Module function exports |
| [Component values] | [Module values] |