diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-12-05 10:23:19 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-05 10:23:19 -0500 |
commit | ce83a849a4612a170b08b4cd2a8e78c6456cdcf4 (patch) | |
tree | 2d712e3e7b6f6e15d4e17c319ff673c2bba27c49 /cli/tsc | |
parent | 74e39a927c63e789fec1c8f1817812920079229d (diff) |
docs: fix description of FileInfo's mode property (#21366)
Diffstat (limited to 'cli/tsc')
-rw-r--r-- | cli/tsc/dts/lib.deno.ns.d.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts index 401f9fa97..b01fea4c0 100644 --- a/cli/tsc/dts/lib.deno.ns.d.ts +++ b/cli/tsc/dts/lib.deno.ns.d.ts @@ -3289,10 +3289,10 @@ declare namespace Deno { * * _Linux/Mac OS only._ */ ino: number | null; - /** **UNSTABLE**: Match behavior with Go on Windows for `mode`. + /** The underlying raw `st_mode` bits that contain the standard Unix + * permissions for this file/directory. * - * The underlying raw `st_mode` bits that contain the standard Unix - * permissions for this file/directory. */ + * _Linux/Mac OS only._ */ mode: number | null; /** Number of hard links pointing to this file. * |