mirror of
https://github.com/chylex/Brotli-Builder.git
synced 2024-11-24 22:42:50 +01:00
12 lines
249 B
C#
12 lines
249 B
C#
namespace BrotliLib.Brotli.Output{
|
|
public interface IBrotliOutput{
|
|
int OutputSize { get; }
|
|
|
|
void Write(byte value);
|
|
void Write(byte[] bytes);
|
|
byte GetByte(int distance);
|
|
|
|
IBrotliOutput Clone();
|
|
}
|
|
}
|