Files
mattermost-mobile/types/credentials/index.d.ts
Miguel Alatzar 3b9fd5c03a [Gekidou] Get all existing server credentials on init (#5468)
* 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
2021-06-21 14:08:06 -07:00

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;
};