We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我看一些文章说namespace中的成员要加上export关键字才能被外界访问到,好像这个教程中没有加,也没有提到这一点。是否是错误呢?
export
export namespace foo { const name: string; namespace bar { function baz(): string; } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
我看一些文章说namespace中的成员要加上
export
关键字才能被外界访问到,好像这个教程中没有加,也没有提到这一点。是否是错误呢?The text was updated successfully, but these errors were encountered: