Files
mattermost-mobile/types/components/permalink.d.ts
Daniel Espino García ee3b655991 Fix permalink to not joined channels and to not fetched posts. (#6294)
* Fix permalink to not joined channels and to not fetched posts.

* i18n-extract

* Implement as designed

* Revert unintended change

* Minor fix and fix svgs

* updated svg to fix masking problems and colors

* Fix lint

* Address feedback

* Update join_public_channel.tsx

fixed public channel svg

* Update join_public_channel.tsx

* Update join_private_channel.tsx

* Address feedback

Co-authored-by: Matthew Birtch <mattbirtch@gmail.com>
2022-06-17 19:23:12 +02:00

15 lines
371 B
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
type PermalinkErrorType = {
unreachable?: boolean;
notExist?: boolean;
joinedTeam?: boolean;
privateChannel?: boolean;
privateTeam?: boolean;
teamName?: string;
channelName?: string;
teamId?: string;
channelId?: string;
}