Files
mattermost-mobile/types/api/search.d.ts
2023-07-18 12:17:19 -04:00

18 lines
414 B
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
type FileSearchRequest = {
error?: unknown;
file_infos?: {[id: string]: FileInfo};
next_file_info_id?: string;
order?: string[];
prev_file_info_id?: string;
}
type PostSearchRequest = {
error?: unknown;
order?: string[];
posts?: Post[];
matches?: SearchMatches;
}