From 678363b0ba7a773e5dac0ccbc3557024a6b89805 Mon Sep 17 00:00:00 2001 From: Reynaldi Chernando <12949382+reynaldichernando@users.noreply.github.com> Date: Wed, 7 Jan 2026 01:18:01 +0700 Subject: [PATCH] Init fix FS types (#2201) --- src/puter-js/types/modules/filesystem.d.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/puter-js/types/modules/filesystem.d.ts b/src/puter-js/types/modules/filesystem.d.ts index 5df2284a8..202eaf0ba 100644 --- a/src/puter-js/types/modules/filesystem.d.ts +++ b/src/puter-js/types/modules/filesystem.d.ts @@ -43,7 +43,6 @@ export interface DeleteOptions extends RequestCallbacks { paths?: string | string[]; recursive?: boolean; descendantsOnly?: boolean; - descendants_only?: boolean; } export interface ReadOptions extends RequestCallbacks { @@ -100,7 +99,6 @@ export interface WriteOptions extends RequestCallbacks { dedupeName?: boolean; createMissingParents?: boolean; createMissingAncestors?: boolean; - name?: string; init?: (operationId: string, xhr: XMLHttpRequest) => void; start?: () => void; progress?: (operationId: string, progress: number) => void;