0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-29 08:58:01 -04:00
This commit is contained in:
Tyler Butler 2021-03-19 13:26:49 -07:00 committed by GitHub
parent 2d55090d8c
commit 941a7c8ec9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -115,6 +115,6 @@ export function multiply(a: number, b: number): number {
```
All functions, classes, constants and variables which need to be accessible
inside external modules must be exported. Either by pretending them with the
inside external modules must be exported. Either by prepending them with the
`export` keyword or including them in an export statement at the bottom of the
file.