Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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. */
Expand All @@ -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.
Expand Down Expand Up @@ -375,4 +375,4 @@ interface Cordova {
declare enum LocalFileSystem {
PERSISTENT=1,
TEMPORARY=0
}
}
Loading