mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
fix: add missing fields to Deno.FsFile (#13674)
This commit is contained in:
parent
9b5e336c3d
commit
d2ab1ed378
1 changed files with 3 additions and 0 deletions
3
cli/dts/lib.deno.ns.d.ts
vendored
3
cli/dts/lib.deno.ns.d.ts
vendored
|
@ -1092,6 +1092,9 @@ declare namespace Deno {
|
|||
stat(): Promise<FileInfo>;
|
||||
statSync(): FileInfo;
|
||||
close(): void;
|
||||
|
||||
readonly readable: ReadableStream<Uint8Array>;
|
||||
readonly writable: WritableStream<Uint8Array>;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue