mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-19 21:46:50 -04:00
10 lines
271 B
C#
10 lines
271 B
C#
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.md in the project root for license information.
|
|
|
|
namespace Microsoft.AspNet.SignalR.Hubs
|
|
{
|
|
public interface IJavaScriptMinifier
|
|
{
|
|
string Minify(string source);
|
|
}
|
|
}
|