mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-12-23 22:58:00 -05:00
24 lines
599 B
Zig
24 lines
599 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");
|
|
const XHR = @import("xhr/xhr.zig");
|
|
const Storage = @import("storage/storage.zig");
|
|
const URL = @import("url/url.zig");
|
|
|
|
pub const HTMLDocument = @import("html/document.zig").HTMLDocument;
|
|
|
|
// Interfaces
|
|
pub const Interfaces = generate.Tuple(.{
|
|
Console,
|
|
DOM.Interfaces,
|
|
Events.Interfaces,
|
|
HTML.Interfaces,
|
|
XHR.Interfaces,
|
|
Storage.Interfaces,
|
|
URL.Interfaces,
|
|
});
|