18 lines
497 B
TypeScript
18 lines
497 B
TypeScript
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import type {CombinedConfig} from './config';
|
|
|
|
export type SaveQueueItem = {
|
|
configType: 'updates' | 'appOptions';
|
|
key: keyof CombinedConfig;
|
|
data: CombinedConfig[keyof CombinedConfig];
|
|
};
|
|
|
|
export type DeveloperSettings = {
|
|
browserOnly?: boolean;
|
|
disableNotificationStorage?: boolean;
|
|
disableUserActivityMonitor?: boolean;
|
|
disableContextMenu?: boolean;
|
|
};
|