mattermost-mobile/app/constants/deep_linking.ts
2024-01-23 13:25:21 -07:00

13 lines
330 B
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
const DeepLinkType = {
Channel: 'channel',
DirectMessage: 'dm',
GroupMessage: 'gm',
Invalid: 'invalid',
Permalink: 'permalink',
Redirect: '_redirect',
} as const;
export default DeepLinkType;