aboutsummaryrefslogtreecommitdiff
path: root/src/bun.js/bindings/Sink.h
blob: fcd234a84ece807aeec5d67efeb8f47556a192b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "root.h"

namespace WebCore {

enum SinkID : uint8_t {
    ArrayBufferSink = 0,
    TextSink = 1,
    FileSink = 2,
    HTMLRewriterSink = 3,
    HTTPResponseSink = 4,
    HTTPSResponseSink = 5,
    BrotliDecompressorSink = 6,
    BrotliCompressorSink = 7,

};
static constexpr unsigned numberOfSinkIDs
    = 8;

}