mattermost-desktop/src/types/server.ts

16 lines
342 B
TypeScript

// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
export type RemoteInfo = {
name: string;
serverVersion?: string;
siteURL?: string;
hasFocalboard?: boolean;
hasPlaybooks?: boolean;
};
export type ClientConfig = {
Version: string;
SiteURL: string;
}