1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 15:24:46 -05:00

fix: add missing fields to Deno.FsFile (#13674)

This commit is contained in:
Bartek Iwańczuk 2022-02-15 14:38:39 +01:00 committed by GitHub
parent 9b5e336c3d
commit d2ab1ed378
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1092,6 +1092,9 @@ declare namespace Deno {
stat(): Promise<FileInfo>;
statSync(): FileInfo;
close(): void;
readonly readable: ReadableStream<Uint8Array>;
readonly writable: WritableStream<Uint8Array>;
}
/**