@primestyleai/tryon 5.6.21 → 5.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,8 @@
1
1
  import type { Profile, ProfileMeasurements, SizeHistoryEntry } from "../types";
2
2
  export declare const LS_PREFIX = "primestyle_";
3
+ /** Custom event name fired on `window` whenever profile/active/cache state
4
+ * changes. Used by usePrimeStyleSize to refetch in real time. */
5
+ export declare const PS_STORAGE_CHANGE_EVENT = "ps:storage-change";
3
6
  export declare function lsGet<T>(key: string, fallback: T): T;
4
7
  export declare function lsSet(key: string, value: unknown): void;
5
8
  export declare function getProfiles(): Profile[];