mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
Fix: jsDoc for Deno.dir() (#3888)
This commit is contained in:
parent
a04e7270cd
commit
700f5e45ef
1 changed files with 14 additions and 0 deletions
14
cli/js/lib.deno.ns.d.ts
vendored
14
cli/js/lib.deno.ns.d.ts
vendored
|
@ -87,6 +87,7 @@ declare namespace Deno {
|
|||
* "public", "template", "video"
|
||||
*
|
||||
* "cache"
|
||||
*
|
||||
* |Platform | Value | Example |
|
||||
* | ------- | ----------------------------------- | ---------------------------- |
|
||||
* | Linux | `$XDG_CACHE_HOME` or `$HOME`/.cache | /home/alice/.cache |
|
||||
|
@ -94,6 +95,7 @@ declare namespace Deno {
|
|||
* | Windows | `{FOLDERID_LocalAppData}` | C:\Users\Alice\AppData\Local |
|
||||
*
|
||||
* "config"
|
||||
*
|
||||
* |Platform | Value | Example |
|
||||
* | ------- | ------------------------------------- | -------------------------------- |
|
||||
* | Linux | `$XDG_CONFIG_HOME` or `$HOME`/.config | /home/alice/.config |
|
||||
|
@ -101,6 +103,7 @@ declare namespace Deno {
|
|||
* | Windows | `{FOLDERID_RoamingAppData}` | C:\Users\Alice\AppData\Roaming |
|
||||
*
|
||||
* "executable"
|
||||
*
|
||||
* |Platform | Value | Example |
|
||||
* | ------- | --------------------------------------------------------------- | -----------------------|
|
||||
* | Linux | `XDG_BIN_HOME` or `$XDG_DATA_HOME`/../bin or `$HOME`/.local/bin | /home/alice/.local/bin |
|
||||
|
@ -108,6 +111,7 @@ declare namespace Deno {
|
|||
* | Windows | - | - |
|
||||
*
|
||||
* "data"
|
||||
*
|
||||
* |Platform | Value | Example |
|
||||
* | ------- | ---------------------------------------- | ---------------------------------------- |
|
||||
* | Linux | `$XDG_DATA_HOME` or `$HOME`/.local/share | /home/alice/.local/share |
|
||||
|
@ -115,6 +119,7 @@ declare namespace Deno {
|
|||
* | Windows | `{FOLDERID_RoamingAppData}` | C:\Users\Alice\AppData\Roaming |
|
||||
*
|
||||
* "data_local"
|
||||
*
|
||||
* |Platform | Value | Example |
|
||||
* | ------- | ---------------------------------------- | ---------------------------------------- |
|
||||
* | Linux | `$XDG_DATA_HOME` or `$HOME`/.local/share | /home/alice/.local/share |
|
||||
|
@ -122,6 +127,7 @@ declare namespace Deno {
|
|||
* | Windows | `{FOLDERID_LocalAppData}` | C:\Users\Alice\AppData\Local |
|
||||
*
|
||||
* "audio"
|
||||
*
|
||||
* |Platform | Value | Example |
|
||||
* | ------- | ------------------ | -------------------- |
|
||||
* | Linux | `XDG_MUSIC_DIR` | /home/alice/Music |
|
||||
|
@ -129,6 +135,7 @@ declare namespace Deno {
|
|||
* | Windows | `{FOLDERID_Music}` | C:\Users\Alice\Music |
|
||||
*
|
||||
* "desktop"
|
||||
*
|
||||
* |Platform | Value | Example |
|
||||
* | ------- | -------------------- | ---------------------- |
|
||||
* | Linux | `XDG_DESKTOP_DIR` | /home/alice/Desktop |
|
||||
|
@ -136,6 +143,7 @@ declare namespace Deno {
|
|||
* | Windows | `{FOLDERID_Desktop}` | C:\Users\Alice\Desktop |
|
||||
*
|
||||
* "document"
|
||||
*
|
||||
* |Platform | Value | Example |
|
||||
* | ------- | ---------------------- | ------------------------ |
|
||||
* | Linux | `XDG_DOCUMENTS_DIR` | /home/alice/Documents |
|
||||
|
@ -143,6 +151,7 @@ declare namespace Deno {
|
|||
* | Windows | `{FOLDERID_Documents}` | C:\Users\Alice\Documents |
|
||||
*
|
||||
* "download"
|
||||
*
|
||||
* |Platform | Value | Example |
|
||||
* | ------- | ---------------------- | ------------------------ |
|
||||
* | Linux | `XDG_DOWNLOAD_DIR` | /home/alice/Downloads |
|
||||
|
@ -150,6 +159,7 @@ declare namespace Deno {
|
|||
* | Windows | `{FOLDERID_Downloads}` | C:\Users\Alice\Downloads |
|
||||
*
|
||||
* "font"
|
||||
*
|
||||
* |Platform | Value | Example |
|
||||
* | ------- | ---------------------------------------------------- | ------------------------------ |
|
||||
* | Linux | `$XDG_DATA_HOME`/fonts or `$HOME`/.local/share/fonts | /home/alice/.local/share/fonts |
|
||||
|
@ -157,6 +167,7 @@ declare namespace Deno {
|
|||
* | Windows | – | – |
|
||||
*
|
||||
* "picture"
|
||||
*
|
||||
* |Platform | Value | Example |
|
||||
* | ------- | --------------------- | ----------------------- |
|
||||
* | Linux | `XDG_PICTURES_DIR` | /home/alice/Pictures |
|
||||
|
@ -164,6 +175,7 @@ declare namespace Deno {
|
|||
* | Windows | `{FOLDERID_Pictures}` | C:\Users\Alice\Pictures |
|
||||
*
|
||||
* "public"
|
||||
*
|
||||
* |Platform | Value | Example |
|
||||
* | ------- | --------------------- | ------------------- |
|
||||
* | Linux | `XDG_PUBLICSHARE_DIR` | /home/alice/Public |
|
||||
|
@ -171,6 +183,7 @@ declare namespace Deno {
|
|||
* | Windows | `{FOLDERID_Public}` | C:\Users\Public |
|
||||
*
|
||||
* "template"
|
||||
*
|
||||
* |Platform | Value | Example |
|
||||
* | ------- | ---------------------- | ---------------------------------------------------------- |
|
||||
* | Linux | `XDG_TEMPLATES_DIR` | /home/alice/Templates |
|
||||
|
@ -178,6 +191,7 @@ declare namespace Deno {
|
|||
* | Windows | `{FOLDERID_Templates}` | C:\Users\Alice\AppData\Roaming\Microsoft\Windows\Templates |
|
||||
*
|
||||
* "video"
|
||||
*
|
||||
* |Platform | Value | Example |
|
||||
* | ------- | ------------------- | --------------------- |
|
||||
* | Linux | `XDG_VIDEOS_DIR` | /home/alice/Videos |
|
||||
|
|
Loading…
Reference in a new issue