From 4e4058291619a07ff6e90b2702fcbf3c67cf316a Mon Sep 17 00:00:00 2001 From: ruanyf Date: Thu, 15 Jun 2023 13:18:56 +0800 Subject: [PATCH] docs(module): fixed #1157 --- docs/module.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/module.md b/docs/module.md index 0f24815..5d68da6 100644 --- a/docs/module.md +++ b/docs/module.md @@ -162,6 +162,8 @@ function f() {} export {f}; ``` +目前,export 命令能够对外输出的就是三种接口:函数(Functions), 类(Classes),var、let、const 声明的变量(Variables)。 + 另外,`export`语句输出的接口,与其对应的值是动态绑定关系,即通过该接口,可以取到模块内部实时的值。 ```javascript