mirror of
https://github.com/denoland/deno.git
synced 2024-12-23 07:44:48 -05:00
fix(doc): FileInfo.created
is creation time (#4799)
This commit is contained in:
parent
957050cd02
commit
9d53a7a523
1 changed files with 1 additions and 1 deletions
2
cli/js/lib.deno.ns.d.ts
vendored
2
cli/js/lib.deno.ns.d.ts
vendored
|
@ -1338,7 +1338,7 @@ declare namespace Deno {
|
|||
* field from `stat` on Unix and `ftLastAccessTime` on Windows. This may not
|
||||
* be available on all platforms. */
|
||||
accessed: number | null;
|
||||
/** The last access time of the file. This corresponds to the `birthtime`
|
||||
/** The creation time of the file. This corresponds to the `birthtime`
|
||||
* field from `stat` on Mac/BSD and `ftCreationTime` on Windows. This may not
|
||||
* be available on all platforms. */
|
||||
created: number | null;
|
||||
|
|
Loading…
Reference in a new issue