diff options
author | 2023-03-02 16:49:32 -0300 | |
---|---|---|
committer | 2023-03-02 11:49:32 -0800 | |
commit | c81043bf5eb1ad39c9e193c17febe9ba24c21271 (patch) | |
tree | 4a982edfd73346f5ebe4d2ff07795728b0175120 /src/bun.js/webcore/request.zig | |
parent | 156c1d4bec17338e791b99a792f2458643a1d84c (diff) | |
download | bun-c81043bf5eb1ad39c9e193c17febe9ba24c21271.tar.gz bun-c81043bf5eb1ad39c9e193c17febe9ba24c21271.tar.zst bun-c81043bf5eb1ad39c9e193c17febe9ba24c21271.zip |
put AbortSignal in WebCore namespace (#2267)
Diffstat (limited to 'src/bun.js/webcore/request.zig')
-rw-r--r-- | src/bun.js/webcore/request.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bun.js/webcore/request.zig b/src/bun.js/webcore/request.zig index 67824f4d2..e1fa4a9bb 100644 --- a/src/bun.js/webcore/request.zig +++ b/src/bun.js/webcore/request.zig @@ -12,7 +12,7 @@ const js = JSC.C; const Method = @import("../../http/method.zig").Method; const FetchHeaders = JSC.FetchHeaders; -const AbortSignal = JSC.AbortSignal; +const AbortSignal = JSC.WebCore.AbortSignal; const ObjectPool = @import("../../pool.zig").ObjectPool; const SystemError = JSC.SystemError; const Output = @import("bun").Output; |