From 5aee7c0d2ed4d61daafa834a47429d4fa08402ab Mon Sep 17 00:00:00 2001 From: EddyVerbruggen Date: Sat, 19 Aug 2017 21:29:44 +0200 Subject: [PATCH] Added `newestFirst` to typings --- src/index.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/index.d.ts b/src/index.d.ts index 4d3b161..21d84a0 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -93,6 +93,11 @@ interface Options { * Set the text for the albums button in iOS */ albumsText?: string; + + /** + * Indicates images should be sorted newest-first (iOS only, default false). + */ + newestFirst?: boolean; } export function create(options?: Options): ImagePicker;