@hatiolab/things-scene 3.0.9 → 3.0.12

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.
package/things-scene.d.ts CHANGED
@@ -88,9 +88,9 @@ declare module '@hatiolab/things-scene' {
88
88
  const LinearVerticalLayout: LAYOUT
89
89
 
90
90
  interface PersistentDataStorage {
91
- load(key: object): any
92
- save(key: object, value: any): void
93
- clear(key: object): void
91
+ load(key: object): Promise<any>
92
+ save(key: object, value: any): Promise<void>
93
+ clear(key: object): Promise<void>
94
94
  }
95
95
 
96
96
  type AnimationConfig = {