/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/common/FilePreviewCommon/Formatters/IFormatter.cs
21 строка
665 B
Samuel Chapleau
[Peek] Powertoys Peek MVP (#25922)
10 май 2023, 20:43
Не верифицирован
10 май 2023, 20:43
648f30d
Код
Авторство
О чём код?
// 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 Microsoft.PowerToys.FilePreviewCommon.Monaco.Formatters { public interface IFormatter { /// <summary> /// Gets the language to which the formatter is applied /// </summary> string LangSet { get; } /// <summary> /// Format the value /// </summary> /// <param name="value">The value to format</param> /// <returns>The value formatted</returns> string Format(string value); } }