mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
* Revert "remove native events from streams"
This reverts commit e063a47a53.
* finish revert
* remove accidental submodule
* dfghj
14 lines
332 B
C++
14 lines
332 B
C++
#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
|