1
0
mirror of https://github.com/chylex/Brotli-Builder.git synced 2024-10-17 12:42:47 +02:00
Brotli-Builder/BrotliLib/Brotli/Encode/IBrotliEncoder.cs

11 lines
322 B
C#

using BrotliLib.Brotli.Components;
namespace BrotliLib.Brotli.Encode{
/// <summary>
/// Allows converting bytes into a series of <see cref="MetaBlock"/> objects.
/// </summary>
public interface IBrotliEncoder{
(MetaBlock MetaBlock, BrotliEncodeInfo Next) Encode(BrotliEncodeInfo info);
}
}