File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ interface Window {
17
17
requestFileSystem (
18
18
type : LocalFileSystem ,
19
19
size : number ,
20
- successCallback : ( fileSystem : FileSystem ) => void ,
20
+ successCallback : ( fileSystem : FileSystemCordova ) => void ,
21
21
errorCallback ?: ( fileError : FileError ) => void ) : void ;
22
22
/**
23
23
* Look up file system Entry referred to by local URL.
@@ -42,7 +42,7 @@ interface Window {
42
42
}
43
43
44
44
/** This interface represents a file system. */
45
- interface FileSystem {
45
+ interface FileSystemCordova {
46
46
/* The name of the file system, unique across the list of exposed file systems. */
47
47
name : string ;
48
48
/** The root directory of the file system. */
@@ -63,7 +63,7 @@ interface Entry {
63
63
/** The full absolute path from the root to the entry. */
64
64
fullPath : string ;
65
65
/** The file system on which the entry resides. */
66
- filesystem : FileSystem ;
66
+ filesystem : FileSystemCordova ;
67
67
nativeURL : string ;
68
68
/**
69
69
* Look up metadata about this entry.
@@ -375,4 +375,4 @@ interface Cordova {
375
375
declare enum LocalFileSystem {
376
376
PERSISTENT = 1 ,
377
377
TEMPORARY = 0
378
- }
378
+ }
You can’t perform that action at this time.
0 commit comments