/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/settings-ui/Settings.UI.Library/Interfaces/IHotkeyConfig.cs
17 строк
497 B
Shawn Yuan
[Feature] PowerToys hotkey conflict detection (#41029)
20 авг 2025, 04:31
Не верифицирован
20 авг 2025, 04:31
75526b9
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using ManagedCommon; using Microsoft.PowerToys.Settings.UI.Library.Helpers; namespace Microsoft.PowerToys.Settings.UI.Library.Interfaces { public interface IHotkeyConfig { HotkeyAccessor[] GetAllHotkeyAccessors(); ModuleType GetModuleType(); } }