add optionsStorageTypes

This commit is contained in:
Vitaly 2023-08-18 03:34:13 +03:00
commit 8acb02e6d7

View file

@ -0,0 +1,3 @@
export const mergeAny: <T>(arg1: T, arg2: any) => T = Object.assign
export type WatchValue = <T extends Record<string, any>>(proxy: T, callback: (p: T) => void) => void