mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-10-29 23:23:28 +00:00
Initial commit
Signed-off-by: Francis Bouvier <francis.bouvier@gmail.com>
This commit is contained in:
24
src/dom.zig
Normal file
24
src/dom.zig
Normal file
@@ -0,0 +1,24 @@
|
||||
const Console = @import("jsruntime").Console;
|
||||
|
||||
pub const EventTarget = @import("dom/event_target.zig").EventTarget;
|
||||
pub const Node = @import("dom/node.zig").Node;
|
||||
|
||||
pub const Element = @import("dom/element.zig").Element;
|
||||
pub const HTMLElement = @import("dom/element.zig").HTMLElement;
|
||||
pub const HTMLBodyElement = @import("dom/element.zig").HTMLBodyElement;
|
||||
|
||||
pub const Document = @import("dom/document.zig").Document;
|
||||
pub const HTMLDocument = @import("dom/document.zig").HTMLDocument;
|
||||
|
||||
pub const Interfaces = .{
|
||||
Console,
|
||||
EventTarget,
|
||||
Node,
|
||||
|
||||
Element,
|
||||
HTMLElement,
|
||||
HTMLBodyElement,
|
||||
|
||||
Document,
|
||||
HTMLDocument,
|
||||
};
|
||||
Reference in New Issue
Block a user