mirror of
https://github.com/chylex/Brotli-Builder.git
synced 2024-11-24 22:42:50 +01:00
11 lines
322 B
C#
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);
|
|
}
|
|
}
|