From cbcc17199caaf15cdbaec7764cc56c4c13004bc0 Mon Sep 17 00:00:00 2001 From: Juanjo Date: Thu, 27 Jul 2023 10:00:06 +0200 Subject: [PATCH] Rename FileSystem interface to FileSystemCordova --- 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..6d213d26 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: FileSystemCordova) => 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 FileSystemCordova { /* 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: FileSystemCordova; 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 +}