update template

This commit is contained in:
2025-02-02 18:08:09 -06:00
parent f070c12273
commit a04e2bb9d1
575 changed files with 13430 additions and 55 deletions

View File

@@ -0,0 +1,16 @@
package webextension_polyfill.storage;
typedef Static = {
/**
Fired when one or more items change.
**/
var onChanged : webextension_polyfill.events.Event<(changes:haxe.DynamicAccess<StorageChange>, areaName:String) -> Void>;
var sync : SyncStorageAreaSync;
var local : LocalStorageArea;
var managed : ManagedStorageArea;
/**
Items in the <code>session</code> storage area are kept in memory, and only until the either browser or extension is
closed or reloaded.
**/
var session : StorageArea;
};