remove libdom

This commit is contained in:
Karl Seguin
2025-10-18 07:49:15 +08:00
parent c52dce1c48
commit b047cb6dc1
415 changed files with 26409 additions and 33673 deletions

View File

@@ -0,0 +1,22 @@
const std = @import("std");
const js = @import("../../js/js.zig");
const Page = @import("../../Page.zig");
const Request = @import("Request.zig");
const Response = @import("Response.zig");
const Allocator = std.mem.Allocator;
_arena: Allocator,
_promise: js.Promise,
_has_response: bool,
pub const Input = Request.Input;
pub fn init(input: Input, page: *Page) !js.Promise {
// @ZIGDOM
_ = input;
_ = page;
return undefined;
}