Path: blob/main/src/vs/workbench/contrib/chat/common/chatLayoutService.ts
3296 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import { IObservable } from '../../../../base/common/observable.js';6import { createDecorator } from '../../../../platform/instantiation/common/instantiation.js';78export const IChatLayoutService = createDecorator<IChatLayoutService>('chatLayoutService');910export interface IChatLayoutService {11readonly _serviceBrand: undefined;1213readonly fontFamily: IObservable<string | null>;14readonly fontSize: IObservable<number>;15}161718