// 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
{
///
/// Gets the language to which the formatter is applied
///
string LangSet { get; }
///
/// Format the value
///
/// The value to format
/// The value formatted
string Format(string value);
}
}