#nullable disable
namespace StardewModdingAPI.Web.Framework.Compression
{
/// Handles GZip compression logic.
internal interface IGzipHelper
{
/*********
** Methods
*********/
/// Compress a string.
/// The text to compress.
string CompressString(string text);
/// Decompress a string.
/// The compressed text.
string DecompressString(string rawText);
}
}