forked from Ivasoft/mattermost-mobile
10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
type SsoOption = {
|
|
enabled: boolean;
|
|
text?: string;
|
|
};
|
|
|
|
type SsoWithOptions = Record<string, SsoOption>;
|