2023-08-15 08:04:30 +03:00
|
|
|
//
|
|
|
|
// Copyright (c) Microsoft.
|
|
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
//
|
|
|
|
|
2024-01-03 22:44:13 +03:00
|
|
|
import { UserSettings } from '../business/entities/userSettings';
|
2023-08-15 08:04:30 +03:00
|
|
|
import type { ReposAppRequest } from './web';
|
|
|
|
|
|
|
|
export type ReposAppRequestWithUserSettings = ReposAppRequest & {
|
|
|
|
userSettings?: UserSettings;
|
|
|
|
};
|