Files
mattermost-mobile/types/screens/login.d.ts
2023-02-16 14:12:43 +02:00

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