lambder 1.0.93 → 1.0.95
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/Readme.md +1 -0
- package/package.json +1 -1
package/Readme.md
CHANGED
|
@@ -156,6 +156,7 @@ export default (lambder: Lambder): void => {
|
|
|
156
156
|
};
|
|
157
157
|
```
|
|
158
158
|
|
|
159
|
+
Note: importModule is just a wrapper for addModule. `lambder.importModule(import("api.user.js"));` is same as `lambder.addModule((await import("api.user.js")).default);`
|
|
159
160
|
|
|
160
161
|
### Render Context (ctx) Variables
|
|
161
162
|
```typescript
|