diff options
author | Chris Knight <cknight1234@gmail.com> | 2020-05-27 03:12:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-26 22:12:02 -0400 |
commit | 27708fe87316d11b8d99459db257d381ee049430 (patch) | |
tree | 0cd12b3dc170f71bad5c01212d313d2cc699f69b /docs/runtime.md | |
parent | f7b4523178b01a7e485e98443f03a6973df3e376 (diff) |
doc: various runtime doc updates (#5885)
Diffstat (limited to 'docs/runtime.md')
-rw-r--r-- | docs/runtime.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/runtime.md b/docs/runtime.md index 735ff328e..50cca6def 100644 --- a/docs/runtime.md +++ b/docs/runtime.md @@ -9,8 +9,11 @@ on For APIs where a web standard already exists, like `fetch` for HTTP requests, Deno uses these rather than inventing a new proprietary API. -The documentation for all of these Web APIs can be found on +The detailed documentation for implemented Web APIs can be found on [doc.deno.land](https://doc.deno.land/https/raw.githubusercontent.com/denoland/deno/master/cli/js/lib.deno.shared_globals.d.ts). +Additionally, a full list of the Web APIs which Deno implements is also +available +[in the repository](https://github.com/denoland/deno/blob/master/cli/js/web/README.md). The TypeScript definitions for the implemented web APIs can be found in the [`lib.deno.shared_globals.d.ts`](https://github.com/denoland/deno/blob/master/cli/js/lib.deno.shared_globals.d.ts) |