forked from Ivasoft/mattermost-mobile
15 lines
352 B
TypeScript
15 lines
352 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',
|
|
Plugin: 'plugin',
|
|
Redirect: '_redirect',
|
|
} as const;
|
|
|
|
export default DeepLinkType;
|