mirror of
https://github.com/Readarr/Readarr
synced 2026-02-11 01:04:44 +01:00
9 lines
271 B
C#
9 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);
|
|
}
|
|
}
|