From f763f2e2980648ff850ebc21303c2d084371ec33 Mon Sep 17 00:00:00 2001 From: Geert-Jan Zwiers Date: Sat, 4 Mar 2023 10:31:55 +0100 Subject: [PATCH] chore(docs): add note about loadavg returning 0 on windows (#18006) --- cli/tsc/dts/lib.deno.ns.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts index 154b5f15ff..e3d0a75b98 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