From 8acb02e6d7c2ec2a1d91cba3fcada90eee4b2085 Mon Sep 17 00:00:00 2001 From: Vitaly Date: Fri, 18 Aug 2023 03:34:13 +0300 Subject: [PATCH] add optionsStorageTypes --- src/optionsStorageTypes.ts | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/optionsStorageTypes.ts diff --git a/src/optionsStorageTypes.ts b/src/optionsStorageTypes.ts new file mode 100644 index 00000000..b554da4d --- /dev/null +++ b/src/optionsStorageTypes.ts @@ -0,0 +1,3 @@ +export const mergeAny: (arg1: T, arg2: any) => T = Object.assign + +export type WatchValue = >(proxy: T, callback: (p: T) => void) => void