diff options
author | Geert-Jan Zwiers <geertjanzwiers@protonmail.com> | 2023-03-04 10:31:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-04 05:31:55 -0400 |
commit | 399a22db887db60f90ad1182172dc218e0e1d5ec (patch) | |
tree | 0c934e6d7e6860a4db686898e370396d09eed35b | |
parent | 84bafd11d52609e74a52df8e57752d5e3c25f717 (diff) |
chore(docs): add note about loadavg returning 0 on windows (#18006)
-rw-r--r-- | cli/tsc/dts/lib.deno.ns.d.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts index 154b5f15f..e3d0a75b9 100644 --- a/cli/tsc/dts/lib.deno.ns.d.ts +++ b/cli/tsc/dts/lib.deno.ns.d.ts @@ -332,6 +332,8 @@ declare namespace Deno { * ``` * * Requires `allow-sys` permission. + * + * On Windows there is no API available to retrieve this information and this method returns `[ 0, 0, 0 ]`. * * @tags allow-sys * @category Observability |