Refactor: Prepare Message function props for conversation scope

This commit is contained in:
Scott Nonnenberg
2019-03-15 15:18:00 -07:00
parent 7e58594038
commit d342b23cbc
13 changed files with 300 additions and 256 deletions

View File

@@ -1,5 +1,5 @@
import { Attachment } from './Attachment';
import { Contact } from './Contact';
import { ContactType } from './Contact';
import { IndexableBoolean, IndexablePresence } from './IndexedDB';
export type Message = UserMessage | VerifiedChangeMessage;
@@ -87,7 +87,7 @@ type MessageSchemaVersion5 = Partial<
type MessageSchemaVersion6 = Partial<
Readonly<{
contact: Array<Contact>;
contact: Array<ContactType>;
}>
>;