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;