diff options
Diffstat (limited to 'js/files.ts')
-rw-r--r-- | js/files.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js/files.ts b/js/files.ts index a876301f8..e2c7123e6 100644 --- a/js/files.ts +++ b/js/files.ts @@ -57,6 +57,7 @@ export type OpenMode = /** A factory function for creating instances of `File` associated with the * supplied file name. + * @internal */ export function create(filename: string): Promise<File> { return open(filename, "w+"); |