forked from Ivasoft/mattermost-mobile
* Ensure no unresolved types in the definition files * Address feedback and general cleanup * Move import from @constants/x to @constants where relevant * Remove unneeded "import as"
14 lines
325 B
TypeScript
14 lines
325 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',
|
|
} as const;
|
|
|
|
export default DeepLinkType;
|