storage: first implementation of webstorage API

This commit is contained in:
Pierre Tachoire
2024-04-24 11:53:04 +02:00
parent 2a94e5a69e
commit 3c5d601622
7 changed files with 272 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ 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");
pub const HTMLDocument = @import("html/document.zig").HTMLDocument;
@@ -16,4 +17,5 @@ pub const Interfaces = generate.Tuple(.{
Events.Interfaces,
HTML.Interfaces,
XHR.Interfaces,
Storage.Interfaces,
});