mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-29 12:05:38 +00: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);
|
|
}
|
|
}
|