@react-native-community/image-picker-ios
Version:
React Native Image Picker for iOS
20 lines (18 loc) • 445 B
text/typescript
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
*/
export interface OpenCameraDialogOptions {
/** Defaults to false */
videoMode?: boolean;
}
export interface OpenSelectDialogOptions {
/** Defaults to true */
showImages?: boolean;
/** Defaults to false */
showVideos?: boolean;
}