mirror of
https://github.com/lightpanda-io/browser.git
synced 2026-03-09 10:07:21 -04:00
14 lines
350 B
Zig
14 lines
350 B
Zig
const generate = @import("../generate.zig");
|
|
|
|
const HTMLDocument = @import("document.zig").HTMLDocument;
|
|
const HTMLElem = @import("elements.zig");
|
|
const Window = @import("window.zig").Window;
|
|
|
|
pub const Interfaces = generate.Tuple(.{
|
|
HTMLDocument,
|
|
HTMLElem.HTMLElement,
|
|
HTMLElem.HTMLMediaElement,
|
|
HTMLElem.Interfaces,
|
|
Window,
|
|
});
|