Rollback interfaces changes

This commit is contained in:
Gerzon Z 2021-09-17 16:25:07 -04:00
parent ec665e0bdb
commit 5379109882
2 changed files with 13 additions and 13 deletions

View File

@ -1,19 +1,19 @@
export interface IAvatar {
server?: string;
server: string;
style: any;
text: string;
avatar?: string;
avatar: string;
emoji: string;
size: number;
borderRadius: number;
type?: string;
children?: JSX.Element;
type: string;
children: JSX.Element;
user: {
id: string;
token: string;
};
theme: string;
onPress?(): void;
onPress(): void;
getCustomEmoji(): any;
avatarETag: string;
isStatic: boolean;

View File

@ -23,24 +23,24 @@ import { isValidURL } from '../../utils/url';
interface IMarkdownProps {
msg: string;
getCustomEmoji?: Function;
getCustomEmoji: Function;
baseUrl: string;
username: string;
tmid?: string;
isEdited?: boolean;
tmid: string;
isEdited: boolean;
numberOfLines: number;
customEmojis?: boolean;
customEmojis: boolean;
useRealName: boolean;
channels: {
name: string;
_id: number;
}[];
mentions?: object[];
mentions: object[];
navToRoomInfo: Function;
preview?: boolean;
preview: boolean;
theme: string;
testID?: string;
style?: any;
testID: string;
style: any;
onLinkPress: Function;
}