diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-02-15 14:38:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-15 14:38:39 +0100 |
commit | d2ab1ed37853b57aab487b9244e477f586b90fca (patch) | |
tree | 2b68f7d81b8e700ab3b4fb11e7f165b33cd85f3f /cli/dts/lib.deno.ns.d.ts | |
parent | 9b5e336c3d9b9c9d3b520ddb2ff80502b155ed3f (diff) |
fix: add missing fields to Deno.FsFile (#13674)
Diffstat (limited to 'cli/dts/lib.deno.ns.d.ts')
-rw-r--r-- | cli/dts/lib.deno.ns.d.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts index 70dd5f4bc..d759bdd58 100644 --- a/cli/dts/lib.deno.ns.d.ts +++ b/cli/dts/lib.deno.ns.d.ts @@ -1092,6 +1092,9 @@ declare namespace Deno { stat(): Promise<FileInfo>; statSync(): FileInfo; close(): void; + + readonly readable: ReadableStream<Uint8Array>; + readonly writable: WritableStream<Uint8Array>; } /** |