wxt-zustand
Version:
High-performance Zustand state management for WXT web extensions with seamless cross-tab synchronization and sub-10ms React re-renders
18 lines • 620 B
JavaScript
// TypeScript definitions for wxt-zustand
// This file will contain all the core types and interfaces
/**
* Change types for state diffing operations
*/
export var ChangeType;
(function (ChangeType) {
ChangeType["UPDATED"] = "updated";
ChangeType["REMOVED"] = "removed";
ChangeType["KEYS_UPDATED"] = "updated_keys";
ChangeType["ARRAY_UPDATED"] = "updated_array";
})(ChangeType || (ChangeType = {}));
export * from './background/types';
export * from './frontend/types';
export * from './messaging/types';
export * from './storage/types';
export * from './utils/index';
//# sourceMappingURL=types.js.map