Files
mattermost-mobile/types/utils/file.d.ts
Daniel Espino García 86658edc30 Refactor errors around the app (#7306)
* Refactor errors around the app

* Fix recursive function

* Fix tests
2023-05-03 13:08:55 +02:00

7 lines
260 B
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
type ExtractedFileInfo = Partial<FileInfo> & { name: string; mime_type: string}
type UploadExtractedFile = (files?: ExtractedFileInfo[]) => void;