зеркало из
1
0
Форкнуть 0
opensource-management-portal/interfaces/middleware.ts

12 строки
350 B
TypeScript
Исходник Постоянная ссылка Обычный вид История

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