mirror of
https://github.com/chylex/Brotli-Builder.git
synced 2024-11-24 22:42:50 +01:00
9 lines
204 B
C#
9 lines
204 B
C#
using BrotliLib.Markers.Types;
|
|
|
|
namespace BrotliLib.Markers.Builders{
|
|
public interface IMarkerBuilder{
|
|
void MarkStart(int index);
|
|
void MarkEnd(int index, IMarkerInfo info);
|
|
}
|
|
}
|