forked from Ivasoft/mattermost-mobile
* feat: get all existing server credentials on init * fix: react-native-keychain patch * fix: await in for loop * fix: no need to normalize server URL
9 lines
211 B
TypeScript
9 lines
211 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export type ServerCredential = {
|
|
serverUrl: string;
|
|
userId: string;
|
|
token: string;
|
|
};
|