Improve types in ConversationView#showConversationDetails

This commit is contained in:
Evan Hahn 2021-03-12 17:31:47 -06:00 committed by Josh Perez
parent 6a72879c87
commit e09fb6cce4
4 changed files with 13 additions and 9 deletions

View file

@ -1,4 +1,4 @@
// Copyright 2020 Signal Messenger, LLC
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { connect } from 'react-redux';
@ -35,7 +35,7 @@ export type SmartConversationDetailsProps = {
avatar?: undefined | ArrayBuffer;
title?: string;
}>
) => void;
) => Promise<void>;
onBlockAndDelete: () => void;
onDelete: () => void;
};