[Gekidou] post component tree and partial postList (#5637)

This commit is contained in:
Elias Nahum
2021-09-06 08:22:55 -03:00
committed by GitHub
parent 0139773c31
commit 5700ce7c86
186 changed files with 14905 additions and 650 deletions

View File

@@ -1,7 +0,0 @@
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
type UserMentionKey= {
key: string;
caseSensitive?: boolean;
};

19
types/global/markdown.ts Normal file
View File

@@ -0,0 +1,19 @@
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {TextStyle, ViewStyle} from 'react-native';
export type UserMentionKey= {
key: string;
caseSensitive?: boolean;
};
export type MarkdownBlockStyles = {
adjacentParagraph: ViewStyle;
horizontalRule: ViewStyle;
quoteBlockIcon: TextStyle;
};
export type MarkdownTextStyles = {
[key: string]: TextStyle;
};