1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

docs: fix description of FileInfo's mode property (#21366)

This commit is contained in:
David Sherret 2023-12-05 10:23:19 -05:00 committed by GitHub
parent 74e39a927c
commit ce83a849a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.
*