Files
PowerToys/src/modules/peek/Peek.Common/IApp.cs
Davide Giacometti 5a06bcb473 [Peek]Add wrap and formatting options for Monaco previewer (#29378)
* add options for monaco previewer

* fix formatting
2023-10-24 14:32:35 +01:00

13 lines
313 B
C#

// 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.
namespace Peek.Common
{
public interface IApp
{
public T GetService<T>()
where T : class;
}
}