mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-12-16 16:28:58 +00:00
18 lines
415 B
Zig
18 lines
415 B
Zig
const generate = @import("generate.zig");
|
|
|
|
const Console = @import("jsruntime").Console;
|
|
|
|
const DOM = @import("dom/dom.zig");
|
|
const HTML = @import("html/html.zig");
|
|
const Events = @import("events/event.zig");
|
|
|
|
pub const HTMLDocument = @import("html/document.zig").HTMLDocument;
|
|
|
|
// Interfaces
|
|
pub const Interfaces = generate.Tuple(.{
|
|
Console,
|
|
DOM.Interfaces,
|
|
Events.Interfaces,
|
|
HTML.Interfaces,
|
|
});
|