mirror of
https://github.com/lightpanda-io/browser.git
synced 2026-03-01 13:20:31 -05:00
16 lines
348 B
Zig
16 lines
348 B
Zig
const generate = @import("generate.zig");
|
|
|
|
const Console = @import("jsruntime").Console;
|
|
|
|
const DOM = @import("dom/dom.zig");
|
|
const HTML = @import("html/html.zig");
|
|
|
|
pub const HTMLDocument = @import("html/document.zig").HTMLDocument;
|
|
|
|
// Interfaces
|
|
pub const Interfaces = generate.Tuple(.{
|
|
Console,
|
|
DOM.Interfaces,
|
|
HTML.Interfaces,
|
|
});
|