mirror of
https://github.com/lightpanda-io/browser.git
synced 2026-02-20 00:00:57 -05:00
12 lines
293 B
Zig
12 lines
293 B
Zig
const generate = @import("../generate.zig");
|
|
|
|
const HTMLDocument = @import("document.zig").HTMLDocument;
|
|
const HTMLElem = @import("elements.zig");
|
|
|
|
pub const Interfaces = generate.Tuple(.{
|
|
HTMLDocument,
|
|
HTMLElem.HTMLElement,
|
|
HTMLElem.HTMLMediaElement,
|
|
HTMLElem.Interfaces,
|
|
});
|