From e4cf9441e9d692940936f0e98c93fa9d73dff80f Mon Sep 17 00:00:00 2001 From: Juanjo Martinez Date: Tue, 1 Aug 2023 14:15:08 +0200 Subject: [PATCH] GH-536 TypeScript: Fix conflict with libdom's types - Rename FleSystem interface to CVDFileSystem --- types/index.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/types/index.d.ts b/types/index.d.ts index aeb3e30c..f70947f8 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -17,7 +17,7 @@ interface Window { requestFileSystem( type: LocalFileSystem, size: number, - successCallback: (fileSystem: FileSystem) => void, + successCallback: (fileSystem: CDVFileSystem) => void, errorCallback?: (fileError: FileError) => void): void; /** * Look up file system Entry referred to by local URL. @@ -42,7 +42,7 @@ interface Window { } /** This interface represents a file system. */ -interface FileSystem { +interface CDVFileSystem { /* The name of the file system, unique across the list of exposed file systems. */ name: string; /** The root directory of the file system. */ @@ -63,7 +63,7 @@ interface Entry { /** The full absolute path from the root to the entry. */ fullPath: string; /** The file system on which the entry resides. */ - filesystem: FileSystem; + filesystem: CDVFileSystem; nativeURL: string; /** * Look up metadata about this entry. @@ -375,4 +375,4 @@ interface Cordova { declare enum LocalFileSystem { PERSISTENT=1, TEMPORARY=0 -} \ No newline at end of file +}