diff options
author | 2023-09-07 07:45:00 -0700 | |
---|---|---|
committer | 2023-09-07 07:45:00 -0700 | |
commit | 36e5a072a94805d5644081052391860e2b51f710 (patch) | |
tree | 861b4ddc665e28ba321dd5ded17c29371b3358c5 /src/bun.js/bindings/JSReadableHelper.h | |
parent | 57a06745a48093c25d0f4729ccea41a918d6427d (diff) | |
download | bun-36e5a072a94805d5644081052391860e2b51f710.tar.gz bun-36e5a072a94805d5644081052391860e2b51f710.tar.zst bun-36e5a072a94805d5644081052391860e2b51f710.zip |
revert (#4539)
* Revert "remove native events from streams"
This reverts commit e063a47a53744a2bf5b1c2dd433698c9e37b75d6.
* finish revert
* remove accidental submodule
* dfghj
Diffstat (limited to 'src/bun.js/bindings/JSReadableHelper.h')
-rw-r--r-- | src/bun.js/bindings/JSReadableHelper.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/bun.js/bindings/JSReadableHelper.h b/src/bun.js/bindings/JSReadableHelper.h new file mode 100644 index 000000000..3e2554c2b --- /dev/null +++ b/src/bun.js/bindings/JSReadableHelper.h @@ -0,0 +1,13 @@ +#pragma once + +#include "root.h" + +namespace WebCore { + +JSC_DECLARE_HOST_FUNCTION(jsReadable_maybeReadMore); +JSC_DECLARE_HOST_FUNCTION(jsReadable_resume); +JSC_DECLARE_HOST_FUNCTION(jsReadable_emitReadable); +JSC_DECLARE_HOST_FUNCTION(jsReadable_onEofChunk); +JSC_DECLARE_HOST_FUNCTION(jsReadable_emitReadable_); + +} // namespace WebCore |