X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fnode%2Ffs.d.ts;h=95a17e0b89189f7daede93c640adb736fbd46f45;hb=fcd768b3fedc46704675725136578d70af42201d;hp=af20d1393e0aec8814ce5232542ad7bfd061cf0c;hpb=fd56c3464060f7df8ec0c21a831682d7b085fd10;p=ldk-java diff --git a/ts/node/fs.d.ts b/ts/node/fs.d.ts index af20d139..95a17e0b 100755 --- a/ts/node/fs.d.ts +++ b/ts/node/fs.d.ts @@ -1,7 +1,7 @@ -// Minimal subset of the node 'fs' library that we depend on. -// May be (c) Microsoft licensed under the MIT license, but API's are generally not copyrightable per recent precedent. +// Minimal part of the Node fs API which we depend on. +// May be (c) Microsoft licensed under the MIT license, however API's are not generally copyrightable per recent precedent. declare module 'fs' { - export type PathLike = string | Buffer | URL; + export type PathLike = string | URL; export type PathOrFileDescriptor = PathLike | number; export function readFileSync( path: PathOrFileDescriptor,