mirror of
https://github.com/oven-sh/bun
synced 2026-02-15 21:32:05 +00:00
15 lines
364 B
C++
15 lines
364 B
C++
#pragma once
|
|
|
|
#include "root.h"
|
|
|
|
namespace Bun {
|
|
|
|
JSC_DECLARE_HOST_FUNCTION(functionSetTimeout);
|
|
JSC_DECLARE_HOST_FUNCTION(functionSetInterval);
|
|
JSC_DECLARE_HOST_FUNCTION(functionSetImmediate);
|
|
JSC_DECLARE_HOST_FUNCTION(functionClearTimeout);
|
|
JSC_DECLARE_HOST_FUNCTION(functionClearInterval);
|
|
JSC_DECLARE_HOST_FUNCTION(functionClearImmediate);
|
|
|
|
} // namespace Bun
|