@mentions receive support

This commit is contained in:
Josh Perez
2020-09-16 18:42:48 -04:00
committed by Josh Perez
parent c126a71864
commit 9657c38987
18 changed files with 555 additions and 23 deletions

View File

@@ -1,3 +1,11 @@
export type BodyRangesType = Array<{
start: number;
length: number;
mentionUuid: string;
replacementText: string;
conversationID?: string;
}>;
export type RenderTextCallbackType = (options: {
text: string;
key: number;