From 499cc5c075a6eb7d9793081046523df270352fa2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Bu=C3=9Fmann?= Date: Tue, 19 Nov 2019 09:35:23 +0100 Subject: [PATCH] fix(file): Changed resolveLocalFileSystemURL to FileEntryCallback instead of EntryCallback (#3231) --- src/@ionic-native/plugins/file/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/@ionic-native/plugins/file/index.ts b/src/@ionic-native/plugins/file/index.ts index c984c6636..97074847c 100644 --- a/src/@ionic-native/plugins/file/index.ts +++ b/src/@ionic-native/plugins/file/index.ts @@ -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;