Skip to content

Commit

Permalink
fix(file): Changed resolveLocalFileSystemURL to FileEntryCallback ins…
Browse files Browse the repository at this point in the history
…tead of EntryCallback (#3231)
  • Loading branch information
patrickbussmann authored and danielsogl committed Nov 19, 2019
1 parent f2961fb commit 499cc5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/@ionic-native/plugins/file/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ export interface LocalFileSystem {
/**
* Allows the user to look up the Entry for a file or directory referred to by a local URL.
* @param url A URL referring to a local file in a filesystem accessable via this API.
* @param successCallback A callback that is called to report the Entry to which the supplied URL refers.
* @param successCallback A callback that is called to report the FileEntry to which the supplied URL refers.
* @param errorCallback A callback that is called when errors happen, or when the request to obtain the Entry is
* denied.
*/
resolveLocalFileSystemURL(
url: string,
successCallback: EntryCallback,
successCallback: FileEntryCallback,
errorCallback?: ErrorCallback
): void;

Expand Down

0 comments on commit 499cc5c

Please sign in to comment.