error: TS2339 [ERROR]: Property ‘dir’ does not exist on type ‘typeof Deno’.
return Deno.dir(“home”);
~~~
at https://deno.land/std/node/os.ts:139:15
Deno.dir
是一个不稳定的 API,因此需要显式的使用 --unstable
参数来运行。
error: TS2339 [ERROR]: Property ‘dir’ does not exist on type ‘typeof Deno’.
return Deno.dir(“home”);
~~~
at https://deno.land/std/node/os.ts:139:15
Deno.dir
是一个不稳定的 API,因此需要显式的使用 --unstable
参数来运行。