mirror of
https://github.com/lightpanda-io/browser.git
synced 2026-03-09 01:57:31 -04:00
35 lines
762 B
Zig
35 lines
762 B
Zig
const generate = @import("generate.zig");
|
|
|
|
const Console = @import("jsruntime").Console;
|
|
|
|
// DOM
|
|
const EventTarget = @import("dom/event_target.zig").EventTarget;
|
|
const N = @import("dom/node.zig");
|
|
const Element = @import("dom/element.zig").Element;
|
|
const Document = @import("dom/document.zig").Document;
|
|
|
|
// HTML
|
|
pub const HTMLDocument = @import("html/document.zig").HTMLDocument;
|
|
const HTMLElem = @import("html/elements.zig");
|
|
|
|
const E = @import("html/elements.zig");
|
|
|
|
// Interfaces
|
|
const interfaces = .{
|
|
Console,
|
|
|
|
// DOM
|
|
EventTarget,
|
|
N.Node,
|
|
N.Types,
|
|
Element,
|
|
Document,
|
|
|
|
// HTML
|
|
HTMLDocument,
|
|
HTMLElem.HTMLElement,
|
|
HTMLElem.HTMLMediaElement,
|
|
HTMLElem.Types,
|
|
};
|
|
pub const Interfaces = generate.Tuple(interfaces);
|