From a7f7b26a76e0abba3c8b5902a8de071249be9685 Mon Sep 17 00:00:00 2001 From: Ibby Hadeed Date: Tue, 16 May 2017 05:44:50 -0400 Subject: [PATCH] reafactor(): amend last commit --- src/@ionic-native/plugins/file/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/@ionic-native/plugins/file/index.ts b/src/@ionic-native/plugins/file/index.ts index 16d401e27..12d06a550 100644 --- a/src/@ionic-native/plugins/file/index.ts +++ b/src/@ionic-native/plugins/file/index.ts @@ -32,7 +32,7 @@ export interface IFile extends Blob { * @param start {Number} The index at which to start the slice (inclusive). * @param end {Number} The index at which to end the slice (exclusive). */ - slice(start: number, end: number): void; + slice(start: number, end: number): Blob; } export interface LocalFileSystem {