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

namespace WebCore {

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

};
static constexpr unsigned numberOfSinkIDs
    = 6;

}