// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. import * as FileSystem from 'expo-file-system'; export type ErrorText = Partial | string; export type ExtractedFileInfo = Partial & { name: string; mime_type: string} export type UploadExtractedFile = (files?: ExtractedFileInfo[]) => void;